* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #faf6ed;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .nav-container {
            background-color: #0f172a;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #facc15;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #ffffff;
            font-size: 1.8rem;
        }
        .logo .tm {
            font-size: 1rem;
            vertical-align: top;
            color: #facc15;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            position: relative;
        }
        .nav-links a:hover {
            color: #facc15;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #facc15;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #facc15;
            color: #0f172a !important;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .daman-link:hover {
            background-color: #fde047;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(250, 204, 21, 0.3);
        }
        .daman-link::after {
            display: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #facc15;
        }
        .mobile-nav {
            display: none;
            background-color: #0f172a;
            padding: 25px;
            flex-direction: column;
            gap: 25px;
            border-top: 1px solid #27272a;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            padding: 8px 0;
            border-bottom: 1px solid #1e293b;
        }
        .mobile-nav a:hover {
            color: #facc15;
        }
        .mobile-nav .daman-link {
            width: 100%;
            text-align: center;
            padding: 12px;
            border-radius: 30px;
            border-bottom: none;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: #0f172a;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 800;
            border-bottom: 4px solid #facc15;
            padding-bottom: 20px;
            text-transform: capitalize;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #0f172a;
            margin: 60px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🔥";
            font-size: 1.8rem;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 80%;
            background-color: #facc15;
            border-radius: 5px;
        }
        h3 {
            font-size: 1.6rem;
            color: #1e293b;
            margin: 40px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        h3::before {
            content: "⚡";
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #27272a;
            margin: 30px 0 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "✅";
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #374151;
            padding: 0 2px;
        }
        .highlight {
            font-weight: 700;
            color: #0f172a;
            background-color: #fef3c7;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .desi-note {
            background-color: #fffbeb;
            border-left: 5px solid #f59e0b;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 10px rgba(245, 158, 11, 0.1);
        }
        .desi-note p {
            margin: 0;
            font-size: 1.1rem;
            color: #78350f;
            font-weight: 500;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .desi-note p::before {
            content: "📢";
            font-size: 1.2rem;
            margin-top: 3px;
        }
        .button-container {
            display: flex;
            gap: 25px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: center;
            padding: 10px 0;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 220px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #10b981;
            color: white;
        }
        .download-btn:hover {
            background-color: #059669;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .login-btn:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
            padding: 10px;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 4px solid #ffffff;
        }
        .img-caption {
            margin-top: 15px;
            font-size: 1rem;
            color: #4b5563;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
            font-size: 1.05rem;
        }
        .stats-table th {
            background-color: #0f172a;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .stats-table tr:hover {
            background-color: #f3f4f6;
        }
        .bullet-list {
            margin: 25px 0 25px 40px;
        }
        .bullet-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #374151;
            position: relative;
            padding-left: 20px;
        }
        .bullet-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #f59e0b;
            font-weight: bold;
            font-size: 1.5rem;
            line-height: 1.2;
        }
        .numbered-list {
            margin: 25px 0 25px 40px;
            list-style-type: decimal;
        }
        .numbered-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #374151;
            padding-left: 10px;
        }
        section {
            margin-bottom: 50px;
        }
        .player-quote {
            background-color: #f8fafc;
            border-left: 4px solid #3b82f6;
            padding: 18px 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #1e293b;
            position: relative;
        }
        .player-quote::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 10px;
            font-size: 3rem;
            color: #3b82f6;
            opacity: 0.3;
            font-style: normal;
        }
        .player-quote::after {
            content: '"';
            position: absolute;
            bottom: -20px;
            right: 10px;
            font-size: 3rem;
            color: #3b82f6;
            opacity: 0.3;
            font-style: normal;
        }
        .quote-author {
            display: block;
            margin-top: 10px;
            font-style: normal;
            font-weight: 600;
            color: #0f172a;
            text-align: right;
        }
        .bottom-container {
            max-width: 1300px;
            margin: 80px auto 40px;
            padding: 0 25px;
        }
        .game-types {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #0f172a;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .type-links a {
            color: #3b82f6;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #3b82f6;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .type-links a:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
        }
        .tags {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tags h3 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #0f172a;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            color: #8b5cf6;
            text-decoration: none;
            padding: 8px 18px;
            border: 2px solid #8b5cf6;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag-links a:hover {
            background-color: #8b5cf6;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(139, 92, 246, 0.2);
        }
        .recommendation {
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 40px;
            text-align: center;
            font-size: 1.15rem;
            color: #0f172a;
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            line-height: 1.8;
        }
        .recommendation strong {
            color: #3b82f6;
        }
        .copyright {
            text-align: center;
            color: #6b7280;
            font-size: 1rem;
            padding: 25px 0;
            border-top: 1px solid #e5e7eb;
            margin-top: 40px;
        }
        .copyright a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 25px;
            }
            .logo {
                font-size: 2rem;
            }
            .logo span {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 16px 30px;
                min-width: 200px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 45px 0 20px;
                gap: 10px;
            }
            h2::before {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 15px;
            }
            h4 {
                font-size: 1.2rem;
            }
            p {
                font-size: 1rem;
                margin-bottom: 18px;
            }
            .button-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .btn {
                width: 100%;
                max-width: 350px;
                padding: 15px;
                font-size: 1.1rem;
            }
            .stats-table th, .stats-table td {
                padding: 15px 12px;
                font-size: 1rem;
            }
            .bullet-list, .numbered-list {
                margin-left: 30px;
            }
            .desi-note {
                padding: 15px;
            }
            .desi-note p {
                font-size: 1rem;
            }
            .img-caption {
                font-size: 0.95rem;
            }
            .game-types, .tags {
                padding: 25px;
            }
            .type-links, .tag-links {
                gap: 12px;
            }
            .type-links a {
                padding: 8px 15px;
                font-size: 1rem;
            }
            .tag-links a {
                padding: 6px 15px;
                font-size: 0.95rem;
            }
            .recommendation {
                padding: 20px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 480px) {
            .nav-wrapper {
                padding: 0 15px;
            }
            .logo {
                font-size: 1.6rem;
            }
            .logo span {
                font-size: 1.2rem;
            }
            .mobile-nav {
                padding: 20px 15px;
                gap: 20px;
            }
            .container {
                padding: 30px 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 10px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-table {
                margin: 30px 0;
            }
            .stats-table th, .stats-table td {
                padding: 12px 8px;
                font-size: 0.95rem;
            }
            .button-container {
                gap: 15px;
            }
            .btn {
                max-width: 100%;
                font-size: 1rem;
            }
            .game-types, .tags {
                padding: 20px 15px;
            }
            .type-links a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            .tag-links a {
                padding: 5px 12px;
                font-size: 0.9rem;
            }
            .copyright {
                font-size: 0.95rem;
                padding: 20px 0;
            }
        }
