* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0a2a;
            color: #f8f4ff;
            line-height: 1.8;
            padding-bottom: 150px;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .header {
            background-color: #1a1240;
            padding: 22px 15px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(123, 31, 162, 0.7);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #ff6b9d;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            text-shadow: 0 0 12px rgba(255, 107, 157, 0.9);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #4cc9f0;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #f8f4ff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 18px;
            padding: 10px 14px;
            border-radius: 10px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ff6b9d;
            background-color: rgba(255, 107, 157, 0.15);
            transform: translateY(-3px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #f8f4ff;
            font-size: 34px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        h1 {
            font-size: 48px;
            color: #ff6b9d;
            text-align: center;
            margin-bottom: 70px;
            padding-bottom: 30px;
            border-bottom: 5px solid #4cc9f0;
            font-weight: 900;
            letter-spacing: 1.2px;
            text-transform: capitalize;
        }
        h2 {
            font-size: 34px;
            color: #72efdd;
            margin: 80px 0 35px;
            padding-left: 30px;
            border-left: 7px solid #ff6b9d;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: capitalize;
        }
        h3 {
            font-size: 28px;
            color: #ffd166;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            letter-spacing: 0.5px;
            text-transform: capitalize;
        }
        h3::before {
            content: "⚔️";
            margin-right: 15px;
            font-size: 32px;
        }
        h4 {
            font-size: 24px;
            color: #a7c0ff;
            margin: 45px 0 25px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            line-height: 1.9;
            font-size: 18px;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 800;
            color: #ff6b9d;
            font-size: 19px;
            text-shadow: 0 0 3px rgba(255, 107, 157, 0.5);
        }
        .btn-container {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin: 80px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 45px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 800;
            font-size: 24px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 280px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.8);
            border: 4px solid transparent;
            text-transform: capitalize;
        }
        .download-btn {
            background-color: #ff6b9d;
            color: white;
            border-color: #ff8fb8;
        }
        .login-btn {
            background-color: #4361ee;
            color: white;
            border-color: #637fff;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.9);
        }
        .btn:active {
            transform: translateY(-4px);
        }
        .img-container {
            text-align: center;
            margin: 70px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 12px 35px rgba(123, 31, 162, 0.8);
            border: 5px solid #1a1240;
        }
        ul, ol {
            margin: 40px 0 40px 60px;
        }
        li {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 2.0;
            padding-left: 15px;
        }
        ul li::marker {
            color: #ff6b9d;
            font-size: 1.6em;
        }
        ol li::marker {
            color: #72efdd;
            font-weight: 700;
            font-size: 1.4em;
        }
        .tips-box {
            background-color: #1a1240;
            border-left: 8px solid #ffd166;
            padding: 40px;
            border-radius: 0 25px 25px 0;
            margin: 60px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
        }
        .tips-box h4 {
            color: #ffd166;
            font-size: 26px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        .tips-box h4::before {
            content: "🔥";
            margin-right: 18px;
            font-size: 32px;
        }
        .stats-box {
            background-color: #1a1240;
            border-radius: 25px;
            padding: 50px;
            margin: 60px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            box-shadow: 0 12px 30px rgba(123, 31, 162, 0.7);
        }
        .stats-item {
            text-align: center;
            padding: 30px;
            border-radius: 20px;
            background-color: #2d1e69;
            transition: transform 0.3s ease;
        }
        .stats-item:hover {
            transform: scale(1.07);
        }
        .stats-number {
            font-size: 50px;
            font-weight: 900;
            color: #ff6b9d;
            margin-bottom: 20px;
            letter-spacing: 1.5px;
        }
        .stats-label {
            font-size: 21px;
            color: #e2e8f0;
            line-height: 1.8;
            text-transform: capitalize;
        }
        .quote-box {
            background-color: rgba(255, 107, 157, 0.08);
            border-radius: 25px;
            padding: 35px;
            margin: 50px 0;
            border-top: 4px solid #ff6b9d;
            border-bottom: 4px solid #ff6b9d;
        }
        .quote-box p {
            font-style: italic;
            font-size: 21px;
            color: #f8f4ff;
            text-align: center;
            margin-bottom: 20px;
        }
        .quote-author {
            text-align: right;
            color: #cbd5e0;
            font-weight: 600;
            font-size: 20px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
        }
        .data-table th {
            background-color: #2d1e69;
            color: #ffd166;
            padding: 20px;
            text-align: left;
            font-size: 20px;
            font-weight: 800;
            text-transform: capitalize;
        }
        .data-table td {
            background-color: #1a1240;
            color: #f8f4ff;
            padding: 18px;
            border-bottom: 1px solid #4a3599;
            font-size: 18px;
        }
        .data-table tr:hover td {
            background-color: #2d1e69;
        }
        .footer {
            background-color: #1a1240;
            padding: 80px 20px;
            margin-top: 120px;
            border-top: 5px solid #2d1e69;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 70px;
        }
        .game-types h3 {
            color: #ffd166;
            margin-bottom: 40px;
            padding-left: 0;
            border-left: none;
        }
        .game-types h3::before {
            content: "🎮";
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .type-links a {
            color: #f8f4ff;
            background-color: #2d1e69;
            padding: 18px 35px;
            border-radius: 35px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 19px;
            font-weight: 600;
            text-transform: capitalize;
        }
        .type-links a:hover {
            background-color: #ff6b9d;
            transform: translateY(-4px);
        }
        .tags {
            margin-bottom: 70px;
        }
        .tags h3 {
            color: #ffd166;
            margin-bottom: 40px;
            padding-left: 0;
            border-left: none;
        }
        .tags h3::before {
            content: "🏷️";
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .tag-links a {
            color: #f8f4ff;
            background-color: #2d1e69;
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .tag-links a:hover {
            background-color: #72efdd;
            color: #0f0a2a;
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: #2d1e69;
            padding: 45px;
            border-radius: 25px;
            margin-bottom: 70px;
            text-align: center;
            font-size: 22px;
            line-height: 2.2;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .recommendation a {
            color: #ffd166;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 4px dotted #ffd166;
        }
        .copyright {
            text-align: center;
            color: #94a3b8;
            font-size: 18px;
            padding-top: 50px;
            border-top: 3px solid #2d1e69;
            line-height: 2.0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 105px;
                left: 0;
                right: 0;
                background-color: #1a1240;
                padding: 45px 30px;
                gap: 35px;
                box-shadow: 0 18px 40px rgba(123, 31, 162, 0.8);
                border-top: 4px solid #2d1e69;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 38px;
                margin-bottom: 60px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 30px;
                margin: 70px 0 30px;
                padding-left: 25px;
            }
            h3 {
                font-size: 26px;
                margin: 50px 0 25px;
            }
            h4 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
                margin-bottom: 20px;
            }
            .btn {
                padding: 20px 40px;
                font-size: 22px;
                min-width: 260px;
            }
            .btn-container {
                gap: 30px;
                margin: 70px 0;
            }
            .img-container {
                margin: 60px 0;
            }
            ul, ol {
                margin: 35px 0 35px 45px;
            }
            .tips-box {
                padding: 35px;
                margin: 50px 0;
            }
            .stats-box {
                gap: 30px;
                padding: 40px;
            }
            .stats-number {
                font-size: 45px;
            }
            .footer {
                padding: 70px 15px;
            }
            .type-links {
                gap: 25px;
            }
            .type-links a {
                padding: 15px 30px;
                font-size: 18px;
            }
            .tag-links {
                gap: 20px;
            }
            .tag-links a {
                padding: 12px 25px;
                font-size: 16px;
            }
            .recommendation {
                padding: 35px;
                font-size: 20px;
            }
            .data-table th {
                padding: 18px;
                font-size: 19px;
            }
            .data-table td {
                padding: 16px;
                font-size: 17px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-links {
                gap: 30px;
            }
            .container {
                padding: 45px 20px;
            }
            h1 {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            .stats-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }
