* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f5f0;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #8e44ad;
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 38px;
            font-weight: 900;
            color: #f1c40f;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            text-decoration: none;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #f8f9fa;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links li a:hover {
            color: #f1c40f;
            border-bottom: 3px solid #f1c40f;
        }
        .daman-link {
            background-color: #f1c40f;
            padding: 12px 24px;
            border-radius: 35px;
            color: #8e44ad !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #d4ac0d;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(241, 196, 15, 0.4);
        }
        .download-nav-btn {
            background-color: #27ae60;
            padding: 12px 24px;
            border-radius: 35px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .download-nav-btn:hover {
            background-color: #219954;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(39, 174, 96, 0.4);
        }
        .login-nav-btn {
            background-color: #3498db;
            padding: 12px 24px;
            border-radius: 35px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .login-nav-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(52, 152, 219, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 35px;
            cursor: pointer;
            color: #f1c40f;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #8e44ad;
                padding: 30px 20px;
                gap: 25px;
                border-top: 2px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 32px;
            }
        }
        h1 {
            font-size: 45px;
            color: #8e44ad;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #f1c40f;
            padding-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 36px;
            color: #8e44ad;
            margin: 70px 0 35px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            padding-left: 20px;
        }
        h2::before {
            content: "🛡️";
            font-size: 40px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 90%;
            background-color: #f1c40f;
            border-radius: 3px;
        }
        h3 {
            font-size: 30px;
            color: #6c3483;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: "🎯";
            font-size: 28px;
        }
        h4 {
            font-size: 24px;
            color: #5b2c6f;
            margin: 40px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "🌟";
            font-size: 22px;
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fef9e7;
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #d35400;
            border: 1px solid #fdebd0;
        }
        .keyword {
            font-weight: 900;
            color: #8e44ad;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 3px;
        }
        .stats-box {
            background-color: #f5f0e6;
            padding: 35px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #3498db;
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        .stat-value {
            font-size: 42px;
            font-weight: 900;
            color: #8e44ad;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 18px;
            color: #4d4d4d;
            font-weight: 500;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0,0,0,0.18);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            margin-top: 20px;
            font-size: 17px;
            color: #555555;
            font-style: italic;
            padding: 0 25px 20px;
            background-color: #ffffff;
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 45px;
            border-radius: 40px;
            font-size: 22px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219954;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(39, 174, 96, 0.45);
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.45);
        }
        ul, ol {
            margin: 30px 0 40px 60px;
        }
        li {
            margin-bottom: 20px;
            font-size: 19px;
            line-height: 1.8;
        }
        ul li::marker {
            color: #f1c40f;
            font-size: 22px;
        }
        ol li::marker {
            color: #8e44ad;
            font-weight: 700;
            font-size: 20px;
        }
        .guide-card {
            background-color: #faf4e8;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            border-top: 6px solid #3498db;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .guide-card h3 {
            margin-top: 0;
        }
        .tip-box {
            background-color: #fff8e1;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid #f39c12;
        }
        .tip-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: #d35400;
        }
        .event-card {
            background-color: #fdf2f8;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            border-top: 6px solid #e74c3c;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .community-discussion {
            background-color: #e8f4f8;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            border-top: 6px solid #8e44ad;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .discussion-topic {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 4px solid #3498db;
        }
        .discussion-topic h4 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .game-types {
            background-color: #f0e6d2;
            padding: 40px;
            border-radius: 20px;
            margin: 80px 0 50px;
            border-left: 8px solid #8e44ad;
        }
        .game-types h3 {
            margin-top: 0;
            color: #8e44ad;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 30px;
        }
        .type-link {
            background-color: #d7ccc8;
            color: #8e44ad;
            padding: 15px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        .type-link:hover {
            background-color: #bcafa6;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(142, 68, 173, 0.25);
        }
        .tags {
            background-color: #faf0f5;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0 80px;
            border-left: 8px solid #e74c3c;
        }
        .tags h3 {
            margin-top: 0;
            color: #e74c3c;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        .tag-link {
            background-color: #fce4ec;
            color: #e74c3c;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-link:hover {
            background-color: #f8ccd8;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.25);
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 40px;
            border-radius: 20px;
            margin: 70px 0;
            text-align: center;
            border: 4px solid #f1c40f;
            box-shadow: 0 8px 25px rgba(241, 196, 15, 0.25);
        }
        .recommendation p {
            font-size: 22px;
            font-weight: 700;
            color: #d35400;
            margin-bottom: 0;
            text-align: center;
        }
        .recommendation a {
            color: #8e44ad;
            font-weight: 900;
            text-decoration: underline;
            text-underline-offset: 6px;
        }
        .copyright {
            text-align: center;
            padding: 40px;
            background-color: #8e44ad;
            color: #ffffff;
            margin-top: 100px;
            border-top: 6px solid #f1c40f;
        }
        .copyright p {
            text-align: center;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .copyright a {
            color: #f1c40f;
            text-decoration: none;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 38px;
                margin: 50px 0 35px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 32px;
                margin: 60px 0 30px;
            }
            h3 {
                font-size: 26px;
                margin: 45px 0 22px;
            }
            h4 {
                font-size: 22px;
                margin: 35px 0 18px;
            }
            .btn {
                padding: 18px 40px;
                font-size: 20px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .img-container {
                margin: 50px 0;
            }
            ul, ol {
                margin: 25px 0 35px 40px;
            }
            p {
                font-size: 18px;
                margin-bottom: 22px;
            }
            .game-types, .tags {
                padding: 35px;
                margin: 60px 0;
            }
            .type-list, .tag-list {
                gap: 20px;
            }
            .stats-box {
                padding: 30px;
                gap: 30px;
            }
            .stat-value {
                font-size: 38px;
            }
            .guide-card, .event-card, .community-discussion {
                padding: 30px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            .logo {
                font-size: 28px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .container {
                padding: 0 15px;
            }
            .recommendation {
                padding: 30px 15px;
            }
            .recommendation p {
                font-size: 20px;
            }
            .stat-item {
                min-width: 180px;
            }
            .stat-value {
                font-size: 34px;
            }
        }
