        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #fafafa;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #ffb800;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff4757;
            text-decoration: underline;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3rem;
            color: #ffb800;
            text-align: center;
            margin: 50px 0 30px;
            text-shadow: 0 0 12px rgba(255, 184, 0, 0.8);
            letter-spacing: 0.5px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.3rem;
            color: #ff4757;
            margin: 60px 0 30px;
            border-bottom: 3px solid #ffb800;
            padding-bottom: 12px;
            line-height: 1.4;
        }
        h3 {
            font-size: 1.7rem;
            color: #38a1f3;
            margin: 40px 0 20px;
            line-height: 1.5;
        }
        h4 {
            font-size: 1.4rem;
            color: #2ed573;
            margin: 30px 0 15px;
            line-height: 1.5;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download {
            background-color: #2ed573;
            color: #0f0f0f;
            box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
        }
        .btn-login {
            background-color: #38a1f3;
            color: #0f0f0f;
            box-shadow: 0 4px 15px rgba(56, 161, 243, 0.4);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        .btn-download:hover {
            background-color: #27ae60;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .navbar {
            background-color: #1a1a1a;
            padding: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.7);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffb800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #ff4757;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: capitalize;
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #ffb800;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #1a1a1a;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.7);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.3rem;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
            color: #f5f5f5;
        }
        .highlight {
            font-weight: 700;
            color: #ffb800;
        }
        .desi-note {
            background-color: rgba(255, 184, 0, 0.1);
            border-left: 5px solid #ffb800;
            padding: 20px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            margin-right: 10px;
            font-size: 1.4rem;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #38a1f3;
            padding-left: 15px;
            margin: 30px 0;
            color: #e0e0e0;
        }
        ul, ol {
            margin: 25px 0 40px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #f5f5f5;
        }
        ul li {
            list-style-type: disc;
        }
        ol li {
            list-style-type: decimal;
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.7);
            border: 2px solid #ffb800;
        }
        .section-gap {
            margin-top: 80px;
        }
        .subsection-gap {
            margin-top: 50px;
        }
        .skip-link {
            position: absolute;
            top: -50px;
            left: 0;
            background: #ff4757;
            color: white;
            padding: 12px;
            z-index: 1000;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .footer {
            background-color: #1a1a1a;
            padding: 70px 0 40px;
            margin-top: 100px;
            border-top: 3px solid #ffb800;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            color: #ffb800;
            margin-bottom: 30px;
            border-bottom: 2px solid #ff4757;
            padding-bottom: 15px;
        }
        .game-categories, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-categories a, .tags a {
            background-color: #2d2d2d;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: #ff4757;
            color: white;
            text-decoration: none;
            transform: scale(1.05);
        }
        .recommendation {
            background-color: rgba(56, 161, 243, 0.1);
            padding: 25px;
            border-radius: 12px;
            margin-top: 30px;
            border: 1px solid #38a1f3;
        }
        .recommendation h5 {
            font-size: 1.2rem;
            color: #38a1f3;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid #333;
            font-size: 1rem;
            color: #ccc;
            line-height: 1.8;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
        }
        .data-table th, .data-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #444;
        }
        .data-table th {
            background-color: #2d2d2d;
            color: #ffb800;
            font-size: 1.1rem;
        }
        .data-table tr:hover {
            background-color: #1f1f1f;
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
            padding-bottom: 20px;
        }
        .faq-question {
            font-weight: 700;
            color: #38a1f3;
            font-size: 1.2rem;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .faq-answer {
            color: #f5f5f5;
            font-size: 1.05rem;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .logo {
                font-size: 1.7rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
            }
            .btn-container {
                gap: 15px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .desi-note {
                padding: 15px;
            }
            .footer {
                padding: 50px 0 30px;
            }
            .footer-container {
                gap: 30px;
            }
        }
