* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 180px;
            font-size: 18px;
            letter-spacing: 0.4px;
        }
        .header {
            background-color: #1e293b;
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            border-bottom: 6px solid #38bdf8;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        }
        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 48px;
            font-weight: 900;
            color: #38bdf8;
            text-shadow: 0 0 25px rgba(56, 189, 248, 0.9);
            text-decoration: none;
            letter-spacing: 4px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
        }
        .logo span {
            color: #f97316;
            margin: 0 15px;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 12px 18px;
            border-radius: 12px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #38bdf8;
            background-color: rgba(255, 255, 255, 0.15);
            transform: scale(1.08);
        }
        .daman-link {
            background-color: #f97316;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 22px;
            color: #0f172a !important;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .daman-link:hover {
            background-color: #ea580c;
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.7);
        }
        .menu-toggle {
            display: none;
            font-size: 40px;
            cursor: pointer;
            color: #f8fafc;
            background: transparent;
            border: none;
        }
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 70px 25px;
        }
        h1 {
            font-size: 56px;
            color: #38bdf8;
            text-align: center;
            margin-bottom: 80px;
            padding-bottom: 35px;
            border-bottom: 7px solid #f97316;
            text-shadow: 0 6px 20px rgba(0,0,0,0.6);
            letter-spacing: 2px;
        }
        h2 {
            font-size: 42px;
            color: #f97316;
            margin: 90px 0 45px;
            padding-left: 35px;
            border-left: 8px solid #38bdf8;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h2::before {
            content: "⛰️";
            margin-right: 30px;
        }
        h3 {
            font-size: 34px;
            color: #22d3ee;
            margin: 70px 0 35px;
            padding-bottom: 15px;
            border-bottom: 5px dashed #f97316;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h3::before {
            content: "🏆";
            margin-right: 22px;
        }
        h4 {
            font-size: 28px;
            color: #f472b6;
            margin: 55px 0 30px;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h4::before {
            content: "🚀";
            margin-right: 18px;
        }
        p {
            margin-bottom: 35px;
            font-size: 20px;
            text-align: justify;
            padding: 0 15px;
            line-height: 2.0;
        }
        .highlight {
            font-weight: 900;
            color: #38bdf8;
            text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
            letter-spacing: 0.8px;
        }
        .keyterm {
            font-weight: 900;
            color: #f97316;
            text-decoration: underline;
            text-underline-offset: 12px;
            text-decoration-thickness: 5px;
        }
        .btn-container {
            display: flex;
            gap: 50px;
            justify-content: center;
            margin: 90px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 28px 60px;
            font-size: 28px;
            font-weight: 900;
            border: none;
            border-radius: 70px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .download-btn {
            background-color: #22c55e;
            color: #0f172a;
            box-shadow: 0 0 35px rgba(34, 197, 94, 0.9);
        }
        .download-btn:hover {
            background-color: #16a34a;
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(34, 197, 94, 1);
        }
        .login-btn {
            background-color: #38bdf8;
            color: #0f172a;
            box-shadow: 0 0 35px rgba(56, 189, 248, 0.9);
        }
        .login-btn:hover {
            background-color: #0ea5e9;
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(56, 189, 248, 1);
        }
        .img-container {
            text-align: center;
            margin: 80px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 35px;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
            border: 6px solid #f97316;
            transition: transform 0.6s ease;
        }
        .img-container img:hover {
            transform: scale(1.05);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 70px 0;
            background-color: #1e293b;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.7);
        }
        .stats-table th, .stats-table td {
            padding: 28px 35px;
            text-align: left;
            border-bottom: 1px solid #334155;
        }
        .stats-table th {
            background-color: #334155;
            color: #38bdf8;
            font-size: 26px;
            font-weight: 800;
            text-transform: capitalize;
        }
        .stats-table td {
            font-size: 22px;
        }
        .stats-table tr:hover {
            background-color: #27364b;
            transform: scale(1.015);
            transition: background-color 0.4s ease, transform 0.3s ease;
        }
        .strategy-list, .event-list, .review-list, .faq-list, .community-list {
            margin: 45px 0 45px 80px;
        }
        .strategy-list li, .event-list li, .review-list li, .faq-list li, .community-list li {
            margin-bottom: 35px;
            font-size: 22px;
            position: relative;
            padding-left: 40px;
            line-height: 2.1;
        }
        .strategy-list li::before {
            content: "🎯";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 26px;
        }
        .event-list li::before {
            content: "🎉";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 26px;
        }
        .review-list li::before {
            content: "⭐";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 26px;
        }
        .faq-list li::before {
            content: "❓";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 26px;
        }
        .community-list li::before {
            content: "👥";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 26px;
        }
        .community-box {
            background-color: #1e293b;
            border-radius: 35px;
            padding: 70px;
            margin: 70px 0;
            border: 5px solid #22d3ee;
            box-shadow: 0 12px 35px rgba(0,0,0,0.6);
        }
        .community-box h3 {
            color: #f97316;
            margin-top: 0;
            border-bottom: none;
        }
        .faq-item {
            margin-bottom: 40px;
            background-color: #1e293b;
            border-radius: 30px;
            padding: 40px;
            transition: transform 0.4s ease;
        }
        .faq-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.7);
        }
        .faq-question {
            font-weight: 800;
            color: #38bdf8;
            font-size: 26px;
            margin-bottom: 20px;
            text-transform: capitalize;
        }
        .faq-answer {
            font-size: 22px;
        }
        .game-types {
            background-color: #1e293b;
            padding: 60px;
            border-radius: 30px;
            margin: 80px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        .game-types h3 {
            color: #f97316;
            margin-bottom: 50px;
            border-bottom: none;
            text-align: center;
            justify-content: center;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
        }
        .type-links a {
            color: #22d3ee;
            text-decoration: none;
            background-color: #334155;
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 22px;
            font-weight: 700;
            transition: all 0.4s ease;
            text-transform: capitalize;
        }
        .type-links a:hover {
            background-color: #f97316;
            color: #0f172a;
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.6);
        }
        .tags {
            background-color: #1e293b;
            padding: 60px;
            border-radius: 30px;
            margin: 80px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        .tags h3 {
            color: #f97316;
            margin-bottom: 50px;
            border-bottom: none;
            text-align: center;
            justify-content: center;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .tag-links a {
            color: #22c55e;
            text-decoration: none;
            background-color: #334155;
            padding: 15px 32px;
            border-radius: 50px;
            font-size: 20px;
            transition: all 0.4s ease;
            text-transform: lowercase;
        }
        .tag-links a:hover {
            background-color: #f97316;
            color: #0f172a;
            font-weight: 800;
            transform: translateY(-7px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
        }
        .recommendation {
            background-color: #334155;
            padding: 60px;
            border-radius: 30px;
            margin: 80px 0;
            text-align: center;
            box-shadow: 0 12px 35px rgba(0,0,0,0.7);
        }
        .recommendation p {
            font-size: 26px;
            color: #f8fafc;
            text-align: center;
            line-height: 2.3;
        }
        .recommendation .highlight {
            color: #38bdf8;
            font-size: 28px;
        }
        .copyright {
            text-align: center;
            font-size: 22px;
            color: #94a3b8;
            padding: 50px 25px;
            border-top: 4px solid #334155;
            margin-top: 90px;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 35px;
            }
            h1 {
                font-size: 50px;
            }
            h2 {
                font-size: 38px;
            }
            h3 {
                font-size: 32px;
            }
            h4 {
                font-size: 26px;
            }
            p, li {
                font-size: 20px;
            }
            .btn {
                padding: 25px 55px;
                font-size: 26px;
            }
            .stats-table th, .stats-table td {
                padding: 25px 30px;
                font-size: 24px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            .logo {
                font-size: 44px;
            }
            h1 {
                font-size: 46px;
                margin-bottom: 75px;
            }
            h2 {
                font-size: 36px;
                margin: 80px 0 40px;
                padding-left: 30px;
            }
            h3 {
                font-size: 30px;
                margin: 60px 0 30px;
            }
            .strategy-list, .event-list, .review-list, .faq-list, .community-list {
                margin: 40px 0 40px 60px;
            }
            .btn-container {
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 115px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 50px 25px;
                gap: 40px;
                border-bottom: 6px solid #38bdf8;
                box-shadow: 0 20px 30px rgba(0,0,0,0.7);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 42px;
                margin-bottom: 70px;
            }
            h2 {
                font-size: 34px;
                margin: 75px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 28px;
                margin: 55px 0 28px;
            }
            h4 {
                font-size: 24px;
            }
            p, li {
                font-size: 19px;
            }
            .btn {
                padding: 22px 50px;
                font-size: 24px;
                width: 100%;
            }
            .stats-table th, .stats-table td {
                padding: 20px 25px;
                font-size: 21px;
            }
            .strategy-list, .event-list, .review-list, .faq-list, .community-list {
                margin: 35px 0 35px 50px;
            }
            .community-box {
                padding: 50px 35px;
            }
            .img-container {
                margin: 70px 0;
            }
            .logo {
                font-size: 40px;
            }
            .game-types, .tags, .recommendation {
                padding: 50px 35px;
            }
            .type-links {
                gap: 30px;
            }
            .tag-links {
                gap: 25px;
            }
        }
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 20px;
            }
            .logo {
                font-size: 36px;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 26px;
            }
            .btn-container {
                gap: 30px;
            }
            .game-types, .tags, .recommendation {
                padding: 45px 25px;
            }
            .type-links, .tag-links {
                gap: 20px;
            }
            .type-links a {
                padding: 15px 28px;
                font-size: 20px;
            }
            .tag-links a {
                padding: 12px 25px;
                font-size: 19px;
            }
            .copyright {
                font-size: 20px;
                padding: 45px 20px;
            }
            .community-box {
                padding: 45px 30px;
            }
        }
