* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #0a0f1f;
            color: #f5f7ff;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #ffc107;
            text-decoration: none;
            letter-spacing: 0.8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ff5722;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #e3f2fd;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            color: #ffc107;
            background-color: rgba(255,255,255,0.1);
        }
        .daman-link {
            background-color: #ff5722;
            color: white !important;
            font-weight: 700;
            padding: 10px 18px !important;
            border-radius: 8px;
        }
        .daman-link:hover {
            background-color: #e64a19 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f5f7ff;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
            color: white;
            margin-right: 15px;
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #1b5e20 0%, #003300 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }
        .btn-login {
            background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
            color: white;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #01579b 0%, #003366 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffc107;
            text-align: center;
            margin: 50px 0 35px;
            line-height: 1.5;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            padding: 0 10px;
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 60px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #1565c0;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #ffc107;
        }
        h3 {
            font-size: 1.7rem;
            color: #ff9800;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: '🎮';
            margin-right: 12px;
        }
        h4 {
            font-size: 1.4rem;
            color: #81d4fa;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #e0e7ff;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #ff5722;
            font-size: 1.15rem;
        }
        .key-term {
            font-weight: 700;
            color: #4dd0e1;
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 2px;
        }
        .stat-box {
            background-color: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 20px;
            margin: 30px 0;
            border-left: 5px solid #ffc107;
        }
        .stat-box p {
            margin-bottom: 10px;
            font-size: 1.15rem;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .img-container:hover .img-responsive {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 25px 0 35px 30px;
        }
        li {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #e0e7ff;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }
        ul li::before {
            content: '✅';
            position: absolute;
            left: -20px;
            top: 2px;
        }
        ol li {
            counter-increment: list-counter;
        }
        ol li::before {
            content: counter(list-counter) '.';
            position: absolute;
            left: -25px;
            font-weight: 700;
            color: #ff9800;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: rgba(26, 35, 126, 0.3);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        th {
            background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
            color: #f5f7ff;
            font-weight: 700;
            font-size: 1.1rem;
        }
        td {
            color: #e0e7ff;
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: rgba(255,255,255,0.05);
            transform: scale(1.01);
            transition: transform 0.3s ease;
        }
        .game-types {
            margin: 40px 0 30px;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 20px;
            color: #ffc107;
            font-size: 1.3rem;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: #e0e7ff;
            text-decoration: none;
            margin: 0 12px 12px 0;
            padding: 10px 20px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #ff5722;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        footer {
            background: linear-gradient(135deg, #0a0f1f 0%, #1a237e 100%);
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 3px solid #ffc107;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            color: #ffc107;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .recommendation {
            margin: 40px 0;
            font-size: 1.2rem;
            color: #e0e7ff;
            text-align: center;
            line-height: 2;
            padding: 20px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 12px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b3e5fc;
            font-size: 1rem;
            line-height: 1.8;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
                padding: 30px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.4);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            p, li {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 25px;
                width: 100%;
                margin-right: 0;
            }
            .btn-container {
                gap: 15px;
            }
            table {
                font-size: 0.95rem;
            }
            th, td {
                padding: 14px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1rem;
                line-height: 1.8;
            }
            .stat-box {
                padding: 15px;
            }
            .footer-container {
                gap: 30px;
            }
        }
