:root {
            --primary: #1a73e8; 
            --secondary: #ff6b35; 
            --accent: #34a853; 
            --light: #f8f9fa;
            --dark: #1f2937;
            --text: #374151;
            --spacing: 1.5rem;
            --border-radius: 8px;
            --shadow: 0 4px 18px rgba(0,0,0,0.12);
        }
        * {
            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: #f0f7ff;
            padding-bottom: 6rem;
            letter-spacing: 0.3px;
        }
        .container {
            width: 95%;
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #0d47a1);
            color: white;
            padding: 1.3rem 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.2rem;
            font-weight: 900;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            font-family: 'Arial Black', Gadget, sans-serif;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: white;
            margin-left: 0.4rem;
        }
        .logo i {
            color: var(--accent);
            margin-right: 0.4rem;
        }
        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.98rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 3px 10px rgba(52,168,83,0.3);
        }
        .btn-download:hover {
            background-color: #2d9748;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52,168,83,0.4);
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
            margin-left: 1rem;
            box-shadow: 0 3px 10px rgba(255,107,53,0.3);
        }
        .btn-login:hover {
            background-color: #e55a2a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
            background: none;
            border: none;
        }
        .hero {
            background: url('https://host.com/banners/storm-surfer-ocean-rush-hero.jpg') center/cover no-repeat;
            height: 680px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin: 2.8rem 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,115,232,0.85), rgba(52,168,83,0.65));
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 950px;
            padding: 0 2rem;
        }
        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
            line-height: 1.3;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.8rem;
            line-height: 2.1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 2.2rem;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2.8rem;
            margin: 4.5rem 0;
        }
        .content-section {
            background-color: var(--light);
            padding: 3.2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.8rem;
        }
        .sidebar-widget {
            background-color: var(--light);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.4rem;
            padding-bottom: 0.9rem;
            border-bottom: 2px solid var(--secondary);
            font-size: 1.45rem;
            font-weight: 700;
        }
        .sidebar-widget ul {
            list-style: none;
            margin: 0;
        }
        .sidebar-widget li {
            margin-bottom: 1.1rem;
            display: flex;
            align-items: center;
            transition: transform 0.2s ease;
        }
        .sidebar-widget li:hover {
            transform: translateX(6px);
        }
        .sidebar-widget li::before {
            content: '🌊';
            margin-right: 0.8rem;
            font-size: 1.25rem;
        }
        .sidebar-widget a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .sidebar-widget a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .sidebar-widget .stats-box {
            background-color: #e8f4f8;
            padding: 1.4rem;
            border-radius: var(--border-radius);
            margin-top: 1.2rem;
        }
        .sidebar-widget .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .sidebar-widget .stat-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-widget .stat-label {
            font-weight: 500;
            color: var(--dark);
        }
        .sidebar-widget .stat-value {
            font-weight: 700;
            color: var(--primary);
        }
        h1 {
            font-size: 2.7rem;
            color: var(--primary);
            margin-bottom: 2.2rem;
            line-height: 1.5;
            font-weight: 800;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 1.1rem;
        }
        h2 {
            font-size: 2.1rem;
            color: var(--primary);
            margin: 3.5rem 0 1.7rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px solid #e0e0e0;
            font-weight: 700;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2.8rem 0 1.3rem;
            font-weight: 600;
        }
        h4 {
            font-size: 1.35rem;
            color: var(--dark);
            margin: 2rem 0 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.7rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #e6f7ef;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-weight: 500;
            color: var(--primary);
            border-left: 3px solid var(--accent);
        }
        ul, ol {
            margin: 2rem 0 2rem 2.8rem;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 1.1rem;
            font-size: 1.08rem;
        }
        li strong {
            color: var(--primary);
        }
        .content-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2.2rem 0;
            box-shadow: var(--shadow);
            border: 4px solid white;
            transition: transform 0.3s ease;
        }
        .content-image:hover {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #555;
            margin-top: -1.8rem;
            margin-bottom: 2.2rem;
            font-size: 1.02rem;
        }
        .game-specs {
            width: 100%;
            border-collapse: collapse;
            margin: 2.8rem 0;
            font-size: 1.08rem;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .game-specs th, .game-specs td {
            padding: 1.3rem;
            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: #f0f8ff;
        }
        .game-specs tr:nth-child(even) {
            background-color: #fafafa;
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding: 1.3rem 2rem;
            margin: 2.2rem 0;
            background-color: #fff3e6;
            font-style: italic;
            color: #4d3a2e;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote author {
            display: block;
            margin-top: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
            font-size: 1.08rem;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 3.2rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 3.8rem 0;
            color: white;
            box-shadow: 0 8px 25px rgba(26,115,232,0.25);
        }
        .cta-section h2 {
            color: var(--secondary);
            border-bottom: none;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
        }
        .cta-section p {
            font-size: 1.3rem;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2.2rem;
            margin-top: 2.8rem;
            flex-wrap: wrap;
        }
        .desi-icon {
            color: var(--secondary);
            font-size: 1.7rem;
            margin: 0 0.4rem;
        }
        .coastal-icon {
            color: var(--primary);
            font-size: 1.7rem;
            margin: 0 0.4rem;
        }
        .desi-box {
            background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
            border-left: 4px solid var(--accent);
            padding: 1.7rem;
            margin: 2.2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.09);
        }
        .desi-box h4 {
            color: var(--primary);
            margin-bottom: 1.1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .desi-box p {
            margin-bottom: 1.1rem;
        }
        .desi-box ul {
            margin-top: 0;
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid #dee2e6;
            margin: 2.2rem 0;
        }
        .tab {
            padding: 0.9rem 1.6rem;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 500;
            color: var(--text);
            transition: all 0.3s ease;
        }
        .tab.active {
            border-bottom: 3px solid var(--secondary);
            color: var(--primary);
        }
        .tab:hover {
            color: var(--secondary);
        }
        .tab-content {
            padding: 1.7rem 0;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4.5rem 0;
            margin-top: 6rem;
            border-top: 5px solid var(--secondary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.8rem;
        }
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 2rem;
            font-size: 1.45rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.9rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 1.1rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.08rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 0.6rem;
        }
        .footer-links a::before {
            content: '→';
            color: var(--accent);
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateX(-5px);
        }
        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }
        .copyright {
            text-align: center;
            padding-top: 2.8rem;
            margin-top: 2.8rem;
            border-top: 1px solid #444;
            font-size: 1.05rem;
            color: #aaa;
            line-height: 1.9;
        }
        .recommended-games {
            margin-top: 2.2rem;
        }
        .recommended-games h4 {
            color: var(--secondary);
            margin-bottom: 1.3rem;
            font-size: 1.25rem;
        }
        .recommended-item {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            margin-bottom: 1.1rem;
            padding-bottom: 1.1rem;
            border-bottom: 1px solid #333;
        }
        .recommended-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .recommended-icon {
            background-color: var(--primary);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1.1rem;
            margin: 2.2rem 0;
        }
        .tag {
            background-color: #e3f2fd;
            padding: 0.7rem 1.3rem;
            border-radius: 25px;
            font-size: 1.02rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #bbdefb;
            transform: translateY(-2px);
        }
        .tag a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .tag a:hover {
            color: var(--accent);
        }
        .categories {
            margin: 2.2rem 0;
        }
        .category-link {
            color: var(--accent);
            text-decoration: none;
            margin-right: 1.3rem;
            font-weight: 600;
            font-size: 1.08rem;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 0.9rem;
        }
        .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: 3.7rem;
            }
        }
        @media (max-width: 992px) {
            nav {
                gap: 1.7rem;
            }
            .btn {
                padding: 0.65rem 1.4rem;
                font-size: 0.93rem;
            }
            .hero {
                height: 600px;
            }
            .content-section {
                padding: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 2.2rem;
                gap: 1.7rem;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
                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.9rem;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1.25rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 2.2rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 2rem;
            }
            .hero {
                height: 520px;
            }
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                gap: 1.3rem;
            }
            .content-section {
                padding: 2rem;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.75;
            }
            .game-specs th, .game-specs td {
                padding: 1rem;
                font-size: 1.02rem;
            }
            .sidebar-widget {
                padding: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                height: 470px;
            }
            .tags {
                gap: 0.9rem;
            }
            .tag {
                padding: 0.6rem 1rem;
                font-size: 0.98rem;
            }
            .desi-box {
                padding: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        html {
            scroll-behavior: smooth;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2.2rem;
        }
        .mt-2 {
            margin-top: 2.2rem;
        }
        .italic {
            font-style: italic;
        }
        .bold {
            font-weight: 600;
        }
        .desi-quote {
            font-family: 'Georgia', serif;
            font-size: 1.18rem;
            color: #3d3d3d;
        }
        .feature-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.92rem;
            font-weight: 600;
            margin-right: 0.6rem;
            margin-bottom: 0.6rem;
        }
        .region-badge {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 0.3rem 0.7rem;
            border-radius: 15px;
            font-size: 0.88rem;
            margin-right: 0.6rem;
        }
