* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #121229;
            color: #f8f9fa;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 18px;
        }
        .header {
            background-color: #1e1e40;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            border-bottom: 3px solid #ff6b35;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffd54f;
            text-shadow: 0 0 12px rgba(255, 213, 79, 0.8);
            text-decoration: none;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ff6b35;
            margin: 0 8px;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 10px;
            border-radius: 8px;
        }
        .nav-links a:hover {
            color: #ffd54f;
            background-color: rgba(255, 255, 255, 0.08);
        }
        .daman-link {
            background-color: #ff6b35;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 18px;
        }
        .daman-link:hover {
            background-color: #e05525;
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
        }
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #f8f9fa;
            background: transparent;
            border: none;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 25px;
        }
        h1 {
            font-size: 45px;
            color: #ffd54f;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ff6b35;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 34px;
            color: #4fc3f7;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 5px solid #ff6b35;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "🎯";
            margin-right: 15px;
        }
        h3 {
            font-size: 26px;
            color: #66bb6a;
            margin: 40px 0 22px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #4fc3f7;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "✨";
            margin-right: 12px;
        }
        h4 {
            font-size: 22px;
            color: #ec407a;
            margin: 30px 0 18px;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: "🔍";
            margin-right: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 800;
            color: #ffd54f;
            text-shadow: 0 0 4px rgba(255, 213, 79, 0.3);
        }
        .keyterm {
            font-weight: 900;
            color: #4fc3f7;
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 2px;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 40px;
            font-size: 22px;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2e7d32;
            color: #fff;
            box-shadow: 0 0 20px rgba(46, 125, 50, 0.6);
        }
        .download-btn:hover {
            background-color: #1b5e20;
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(46, 125, 50, 0.8);
        }
        .login-btn {
            background-color: #ff6b35;
            color: #fff;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
        }
        .login-btn:hover {
            background-color: #e05525;
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            border: 3px solid #ffd54f;
            transition: transform 0.3s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #1e1e40;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .stats-table th, .stats-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #333;
        }
        .stats-table th {
            background-color: #2d2d69;
            color: #ffd54f;
            font-size: 20px;
            font-weight: 800;
        }
        .stats-table td {
            font-size: 18px;
        }
        .stats-table tr:hover {
            background-color: #282858;
            transform: scale(1.01);
            transition: background-color 0.3s ease;
        }
        .strategy-list, .event-list, .review-list, .faq-list {
            margin: 30px 0 30px 50px;
        }
        .strategy-list li, .event-list li, .review-list li, .faq-list li {
            margin-bottom: 20px;
            font-size: 19px;
            position: relative;
            padding-left: 25px;
        }
        .strategy-list li::before, .event-list li::before, .review-list li::before, .faq-list li::before {
            content: "✅";
            position: absolute;
            left: 0;
            top: 2px;
        }
        .community-box {
            background-color: #1e1e40;
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            border: 2px solid #4fc3f7;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .community-box h3 {
            color: #ffd54f;
            margin-top: 0;
            border-bottom: none;
        }
        .faq-item {
            margin-bottom: 25px;
            background-color: #1e1e40;
            border-radius: 15px;
            padding: 25px;
            transition: transform 0.3s ease;
        }
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .faq-question {
            font-weight: 800;
            color: #4fc3f7;
            font-size: 20px;
            margin-bottom: 12px;
        }
        .faq-answer {
            font-size: 18px;
        }
        .footer {
            background-color: #1e1e40;
            padding: 60px 25px;
            margin-top: 100px;
            border-top: 3px solid #ff6b35;
            box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 50px;
        }
        .game-types h3 {
            color: #ffd54f;
            margin-bottom: 25px;
            border-bottom: none;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .type-links a {
            color: #4fc3f7;
            text-decoration: none;
            background-color: #2d2d69;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .type-links a:hover {
            background-color: #ff6b35;
            color: #fff;
            transform: translateY(-3px);
        }
        .tags {
            margin-bottom: 50px;
        }
        .tags h3 {
            color: #ffd54f;
            margin-bottom: 25px;
            border-bottom: none;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            color: #66bb6a;
            text-decoration: none;
            background-color: #2d2d69;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #ffd54f;
            color: #121229;
            font-weight: 700;
        }
        .recommendation {
            background-color: #2d2d69;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 50px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .recommendation p {
            font-size: 21px;
            color: #f8f9fa;
            text-align: center;
            line-height: 1.8;
        }
        .recommendation .highlight {
            color: #ffd54f;
            font-size: 23px;
        }
        .copyright {
            text-align: center;
            font-size: 17px;
            color: #bbb;
            padding-top: 30px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 30px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            p, li {
                font-size: 18px;
            }
            .btn {
                padding: 16px 35px;
                font-size: 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #1e1e40;
                padding: 30px 25px;
                gap: 25px;
                border-bottom: 3px solid #ff6b35;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 26px;
                margin: 50px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 22px;
                margin: 35px 0 20px;
            }
            h4 {
                font-size: 19px;
            }
            p, li {
                font-size: 17px;
            }
            .btn {
                padding: 14px 30px;
                font-size: 19px;
                width: 100%;
            }
            .stats-table th, .stats-table td {
                padding: 12px 15px;
                font-size: 16px;
            }
            .strategy-list, .event-list, .review-list, .faq-list {
                margin: 25px 0 25px 30px;
            }
            .community-box {
                padding: 30px 20px;
            }
            .img-container {
                margin: 40px 0;
            }
            .logo {
                font-size: 28px;
            }
        }
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 15px;
            }
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .btn-container {
                gap: 15px;
            }
            .footer {
                padding: 40px 15px;
            }
            .type-links, .tag-links {
                gap: 10px;
            }
        }
