:root {
            --primary: #1a5c38;
            --secondary: #f9a826;
            --accent: #d32f2f;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #333333;
            --spacing: 1.5rem;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: var(--text);
            background-color: #f5f5f0;
            padding-bottom: 4rem;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #2c7a51);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .logo span {
            color: white;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
        }
        .btn-download:hover {
            background-color: #b71c1c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(211,47,47,0.3);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--dark);
            margin-left: 1rem;
        }
        .btn-login:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(249,168,38,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: url('https://host.com/banners/tamil-tidal-surge-hero.jpg') center/cover no-repeat;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin: 2rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .content-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        h1 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid #eee;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .content-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .game-specs {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        .game-specs th, .game-specs td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .game-specs th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .game-specs tr:hover {
            background-color: #f9f9f9;
        }
        blockquote {
            border-left: 4px solid var(--secondary);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background-color: #fff8e1;
            font-style: italic;
            color: #6d4c41;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), #ffb74d);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 3rem 0;
            color: var(--dark);
            box-shadow: 0 5px 15px rgba(249,168,38,0.2);
        }
        .cta-section h2 {
            color: var(--dark);
            border-bottom: none;
            margin-bottom: 1.5rem;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        .tag {
            background-color: #e9ecef;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .tag a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .tag a:hover {
            color: var(--accent);
        }
        .categories {
            margin: 1.5rem 0;
        }
        .category-link {
            color: var(--accent);
            text-decoration: none;
            margin-right: 1rem;
            font-weight: 500;
        }
        .category-link:hover {
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 1.5rem;
                gap: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-login {
                margin-left: 0;
                margin-top: 0.5rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.5rem;
            }
            .hero {
                height: 400px;
            }
            .hero-buttons, .cta-buttons {
                flex-direction: column;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
