        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #121212;
            color: #f8f8f8;
            line-height: 1.8;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #ff3333;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            text-align: center;
            margin: 40px 0 20px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff3333;
            margin: 50px 0 25px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.6rem;
            color: #0099ff;
            margin: 35px 0 15px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-download {
            background-color: #28a745;
            color: white;
        }
        .btn-login {
            background-color: #0099ff;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .navbar {
            background-color: #1a1a1a;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ff3333;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 500;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a1a1a;
                padding: 20px;
                gap: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #ffd700;
        }
        .desi-note {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            margin-right: 8px;
            font-size: 1.2rem;
        }
        ul, ol {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .footer {
            background-color: #1a1a1a;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            color: #ffd700;
            margin-bottom: 20px;
            border-bottom: 1px solid #ffd700;
            padding-bottom: 10px;
        }
        .game-categories, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-categories a, .tags a {
            background-color: #2d2d2d;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.95rem;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: #ff3333;
            color: white;
            text-decoration: none;
        }
        .recommendation {
            background-color: rgba(0, 153, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.95rem;
            color: #ccc;
        }
        .section-gap {
            margin-top: 60px;
        }
        .paragraph-gap {
            margin-bottom: 30px;
        }
        skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #ff3333;
            color: white;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
