:root {
            --primary: #1a5f7a; 
            --secondary: #ffb300; 
            --accent: #2e7d32; 
            --light: #f9f9f9;
            --dark: #1e272e;
            --text: #263238;
            --spacing: 1.5rem;
            --border-radius: 8px;
            --shadow: 0 4px 16px rgba(0,0,0,0.1);
        }
        * {
            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: #f5f5f5;
            padding-bottom: 4rem;
            letter-spacing: 0.1px;
        }
        .container {
            width: 93%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #0d47a1);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: white;
        }
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
            font-size: 1.02rem;
        }
        .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;
            border-radius: 1px;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.7rem 1.6rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 3px 8px rgba(46,125,50,0.3);
        }
        .btn-download:hover {
            background-color: #236b28;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(46,125,50,0.4);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--dark);
            margin-left: 1rem;
            box-shadow: 0 3px 8px rgba(255,179,0,0.3);
        }
        .btn-login:hover {
            background-color: #e6a000;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(255,179,0,0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .hero {
            background: url('https://host.com/banners/ganga-wave-surfer-hero.jpg') center/cover no-repeat;
            height: 580px;
            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;
            box-shadow: var(--shadow);
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26,95,122,0.75), rgba(46,125,50,0.55));
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            padding: 0 1.5rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            line-height: 1.25;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.2rem;
            line-height: 1.9;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
            margin: 3.5rem 0;
        }
        .content-section {
            background-color: var(--light);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid var(--secondary);
            font-size: 1.3rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.3rem;
            color: var(--primary);
            margin-bottom: 1.8rem;
            line-height: 1.4;
            font-weight: 800;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 0.8rem;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.8rem 0 1.3rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid #eee;
            font-weight: 700;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--accent);
            margin: 2rem 0 1rem;
            font-weight: 600;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.3rem;
            text-align: justify;
            font-size: 1.03rem;
        }
        .highlight {
            background-color: #e8f5e9;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 500;
            color: var(--primary);
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 2.2rem;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 0.9rem;
            font-size: 1.02rem;
        }
        li strong {
            color: var(--primary);
        }
        .content-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1.8rem 0;
            box-shadow: var(--shadow);
            border: 4px solid white;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.3rem;
            margin-bottom: 1.8rem;
            font-size: 0.9rem;
        }
        .game-specs {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 1rem;
        }
        .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;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .game-specs tr:hover {
            background-color: #f0f8fb;
        }
        .game-specs tr:nth-child(even) {
            background-color: #fafafa;
        }
        blockquote {
            border-left: 4px solid var(--secondary);
            padding: 1rem 1.5rem;
            margin: 1.8rem 0;
            background-color: #fff8e1;
            font-style: italic;
            color: #5d4037;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote author {
            display: block;
            margin-top: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 2.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 3rem 0;
            color: white;
            box-shadow: 0 6px 20px rgba(26,95,122,0.2);
        }
        .cta-section h2 {
            color: var(--secondary);
            border-bottom: none;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .cta-section p {
            font-size: 1.1rem;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .om-icon {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 0 0.2rem;
        }
        .river-icon {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 0 0.2rem;
        }
        .blessing-box {
            background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
            border-left: 3px solid var(--accent);
            padding: 1.2rem;
            margin: 1.8rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .blessing-box h4 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3.5rem 0;
            margin-top: 4.5rem;
            border-top: 4px solid var(--secondary);
        }
        .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.6rem;
            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;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.6;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.8rem 0;
        }
        .tag {
            background-color: #e3f2fd;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #bbdefb;
            transform: translateY(-1px);
        }
        .tag a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .tag a:hover {
            color: var(--accent);
        }
        .categories {
            margin: 1.8rem 0;
        }
        .category-link {
            color: var(--accent);
            text-decoration: none;
            margin-right: 1rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            text-decoration: underline;
            color: var(--primary);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        @media (max-width: 992px) {
            nav {
                gap: 1.5rem;
            }
            .btn {
                padding: 0.6rem 1.3rem;
                font-size: 0.9rem;
            }
            .hero {
                height: 520px;
            }
        }
        @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: 1.2rem;
                box-shadow: 0 6px 12px rgba(0,0,0,0.15);
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-login {
                margin-left: 0;
                margin-top: 0.5rem;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.05rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                height: 450px;
            }
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
                line-height: 1.7;
            }
            .game-specs th, .game-specs td {
                padding: 0.7rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero {
                height: 400px;
            }
            .sidebar-widget {
                padding: 1.2rem;
            }
            .tags {
                gap: 0.6rem;
            }
            .tag {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        html {
            scroll-behavior: smooth;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .italic {
            font-style: italic;
        }
        .bold {
            font-weight: 600;
        }
