:root {
            --primary: #d4af37; 
            --secondary: #1a237e; 
            --accent: #ff3e6c; 
            --light: #fefefe;
            --dark: #121212;
            --text: #2d2d2d;
            --spacing: 1.5rem;
            --border-radius: 10px;
            --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.9;
            color: var(--text);
            background-color: #f9f5f0;
            padding-bottom: 5rem;
            letter-spacing: 0.2px;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(135deg, var(--secondary), #283593);
            color: white;
            padding: 1.2rem 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: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: var(--accent);
        }
        nav {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.6rem 0;
            position: relative;
            font-size: 1.05rem;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 3px 8px rgba(255,62,108,0.3);
        }
        .btn-download:hover {
            background-color: #e0325a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,62,108,0.4);
        }
        .btn-login {
            background-color: var(--primary);
            color: var(--dark);
            margin-left: 1.2rem;
            box-shadow: 0 3px 8px rgba(212,175,55,0.3);
        }
        .btn-login:hover {
            background-color: #c29b2e;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(212,175,55,0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .hero {
            background: url('https://host.com/banners/bollywood-wave-runner-hero.jpg') center/cover no-repeat;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin: 2.5rem 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,35,126,0.7), rgba(255,62,108,0.5));
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 2rem;
        }
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.8rem;
            color: var(--primary);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
            line-height: 1.2;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            line-height: 2.1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2.5rem;
            margin: 4rem 0;
        }
        .content-section {
            background-color: var(--light);
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.2rem;
        }
        .sidebar-widget {
            background-color: var(--light);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            line-height: 1.4;
            font-weight: 800;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px solid #eee;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin: 2.2rem 0 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 500;
            color: var(--secondary);
        }
        ul, ol {
            margin: 1.8rem 0 1.8rem 2.5rem;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        li strong {
            color: var(--secondary);
        }
        .content-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .game-specs {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            font-size: 1.05rem;
        }
        .game-specs th, .game-specs td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .game-specs th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .game-specs tr:hover {
            background-color: #f5fafe;
        }
        .game-specs tr:nth-child(even) {
            background-color: #fafafa;
        }
        blockquote {
            border-left: 5px solid var(--primary);
            padding: 1.2rem 1.8rem;
            margin: 2rem 0;
            background-color: #fdf2f8;
            font-style: italic;
            color: #4a172c;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote author {
            display: block;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--secondary);
            font-style: normal;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            padding: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 3.5rem 0;
            color: white;
            box-shadow: 0 8px 24px rgba(26,35,126,0.2);
        }
        .cta-section h2 {
            color: var(--primary);
            border-bottom: none;
            margin-bottom: 1.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .cta-section p {
            font-size: 1.15rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2.2rem;
            flex-wrap: wrap;
        }
        .musical-note {
            color: var(--accent);
            font-size: 1.5rem;
            margin: 0 0.3rem;
        }
        .dance-icon {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 0 0.3rem;
        }
        .glamour-box {
            background: linear-gradient(135deg, #fff3e0, #fce4ec);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .glamour-box h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0;
            margin-top: 5rem;
            border-top: 5px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 1.8rem;
            font-size: 1.4rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.8rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            margin-top: 2.5rem;
            border-top: 1px solid #444;
            font-size: 1rem;
            color: #aaa;
            line-height: 1.8;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .tag {
            background-color: #f0f4ff;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e0e9ff;
            transform: translateY(-2px);
        }
        .tag a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
        }
        .tag a:hover {
            color: var(--accent);
        }
        .categories {
            margin: 2rem 0;
        }
        .category-link {
            color: var(--accent);
            text-decoration: none;
            margin-right: 1.2rem;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            text-decoration: underline;
            color: var(--secondary);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 3.2rem;
            }
        }
        @media (max-width: 992px) {
            nav {
                gap: 1.8rem;
            }
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            .hero {
                height: 550px;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 8px 16px 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.8rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                height: 480px;
            }
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                gap: 1.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            p {
                font-size: 1rem;
                line-height: 1.8;
            }
            .game-specs th, .game-specs td {
                padding: 0.8rem;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero {
                height: 420px;
            }
            .sidebar-widget {
                padding: 1.2rem;
            }
            .tags {
                gap: 0.7rem;
            }
            .tag {
                padding: 0.5rem 0.9rem;
                font-size: 0.85rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        html {
            scroll-behavior: smooth;
        }
