* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #8B0000; 
            --secondary: #FFD700; 
            --accent: #228B22; 
            --dark: #1A1A1A;
            --light: #F9F6F0;
            --gray: #708090;
            --spacing: 1.5rem;
            --border-radius: 10px;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            background-color: #F5F2EB;
            color: var(--dark);
            line-height: 1.9;
            font-size: 16px;
        }
        header {
            background-color: var(--primary);
            color: var(--light);
            padding: 1.2rem var(--spacing);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: var(--light);
        }
        .daman-link {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .daman-link:hover {
            color: var(--primary);
            background-color: var(--secondary);
            transform: translateY(-2px);
        }
        nav {
            background-color: var(--dark);
            padding: 0 var(--spacing);
        }
        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 1.2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            padding: 1.3rem 0;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--light);
            background: none;
            border: none;
            cursor: pointer;
            padding: 1rem 0;
        }
        main {
            max-width: 1600px;
            margin: 0 auto;
            padding: var(--spacing);
        }
        .hero {
            background: linear-gradient(rgba(139, 0, 0, 0.85), rgba(139, 0, 0, 0.95)), url('https://via.placeholder.com/1600x600') center/cover no-repeat;
            color: var(--light);
            padding: 5rem var(--spacing);
            border-radius: var(--border-radius);
            margin-bottom: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            font-weight: 300;
        }
        .btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background-color: var(--secondary);
            color: var(--primary);
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            transition: all 0.3s ease;
            margin: 0 1.2rem 1.5rem;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background-color: #E6C200;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: var(--light);
            color: var(--primary);
        }
        .btn-login:hover {
            background-color: #EFEBE9;
        }
        section {
            background-color: var(--light);
            border-radius: var(--border-radius);
            padding: 3rem var(--spacing);
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--primary);
            font-size: 2.4rem;
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h3 {
            color: var(--accent);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            font-weight: 700;
        }
        h4 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .emoji {
            margin-right: 0.7rem;
            font-size: 1.3em;
        }
        .highlight {
            font-weight: 700;
            color: var(--primary);
        }
        .desi-highlight {
            font-weight: 700;
            color: var(--accent);
            font-style: italic;
        }
        ul {
            margin: 1.5rem 0 2rem 2.5rem;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .game-categories, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .category-link, .tag-link {
            background-color: var(--primary);
            color: var(--light);
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }
        .category-link:hover, .tag-link:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .recommendation {
            background-color: rgba(255, 215, 0, 0.15);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border-left: 5px solid var(--secondary);
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .recommendation h4 {
            color: var(--primary);
            margin-top: 0;
            font-size: 1.5rem;
        }
        .stat-box {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0;
            justify-content: center;
        }
        .stat-item {
            background-color: rgba(34, 139, 34, 0.1);
            padding: 1.5rem 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            min-width: 200px;
            border: 1px solid var(--accent);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--dark);
            font-weight: 500;
        }
        .quote {
            font-style: italic;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
            background-color: rgba(139, 0, 0, 0.05);
            font-size: 1.15rem;
            color: #4A4A4A;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
        }
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: var(--primary);
            color: var(--light);
            font-weight: 600;
            font-size: 1.1rem;
        }
        tr:nth-child(even) {
            background-color: rgba(139, 0, 0, 0.03);
        }
        tr:hover {
            background-color: rgba(255, 215, 0, 0.08);
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem var(--spacing);
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            color: var(--secondary);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--secondary);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--gray);
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.8;
        }
        .faq-item {
            margin-bottom: 2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
        }
        .faq-question {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.15rem;
        }
        .faq-answer {
            display: block;
            color: var(--dark);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--secondary);
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        @media (max-width: 1200px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 140px;
                left: 0;
                background-color: var(--dark);
                padding: 1.5rem var(--spacing);
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }
            .hero {
                padding: 3rem 1rem;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 1rem 2rem;
                margin: 0 0.5rem 1rem;
                font-size: 1rem;
                width: 80%;
                margin-bottom: 1.2rem;
            }
            section {
                padding: 2rem 1rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1rem;
            }
            .stat-box {
                gap: 1.5rem;
            }
            .stat-item {
                min-width: 150px;
                padding: 1rem 1.5rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .footer {
                padding: 2.5rem 1rem;
            }
            .footer-container {
                gap: 2rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .btn {
                width: 90%;
            }
            h2 {
                font-size: 1.7rem;
            }
            .game-categories, .tags {
                gap: 0.8rem;
            }
            .category-link, .tag-link {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }
