* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #faf6f0;
            color: #2d3436;
            line-height: 2.0;
            padding-bottom: 100px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #9b59b6;
            color: #ffffff;
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 18px rgba(0,0,0,0.25);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 42px;
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.35);
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #f8f9fa;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 19px;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 4px solid transparent;
        }
        .nav-links li a:hover {
            color: #ffeb3b;
            border-bottom: 4px solid #ffeb3b;
        }
        .daman-link {
            background-color: #ffeb3b;
            padding: 14px 28px;
            border-radius: 40px;
            color: #9b59b6 !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #fbc02d;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(255, 235, 59, 0.45);
        }
        .download-nav-btn {
            background-color: #4caf50;
            padding: 14px 28px;
            border-radius: 40px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .download-nav-btn:hover {
            background-color: #388e3c;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(76, 175, 80, 0.45);
        }
        .login-nav-btn {
            background-color: #2196f3;
            padding: 14px 28px;
            border-radius: 40px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .login-nav-btn:hover {
            background-color: #1976d2;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(33, 150, 243, 0.45);
        }
        .hamburger {
            display: none;
            font-size: 40px;
            cursor: pointer;
            color: #ffeb3b;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 105px;
                left: 0;
                right: 0;
                background-color: #9b59b6;
                padding: 45px 30px;
                gap: 35px;
                border-top: 3px solid rgba(255,255,255,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 36px;
            }
        }
        h1 {
            font-size: 48px;
            color: #9b59b6;
            margin: 80px 0 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 7px solid #ffeb3b;
            padding-bottom: 35px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.18);
        }
        h2 {
            font-size: 38px;
            color: #9b59b6;
            margin: 90px 0 45px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            padding-left: 25px;
        }
        h2::before {
            content: "🥘";
            font-size: 45px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 7px;
            height: 95%;
            background-color: #ffeb3b;
            border-radius: 5px;
        }
        h3 {
            font-size: 32px;
            color: #7d3c98;
            margin: 70px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            padding-left: 20px;
        }
        h3::before {
            content: "🛡️";
            font-size: 32px;
        }
        h4 {
            font-size: 26px;
            color: #6c5ce7;
            margin: 55px 0 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4::before {
            content: "🔶";
            font-size: 24px;
        }
        p {
            margin-bottom: 35px;
            font-size: 20px;
            text-align: justify;
            line-height: 2.0;
        }
        .highlight {
            background-color: #fff3e0;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 700;
            color: #e65100;
            border: 2px solid #ffe0b2;
        }
        .keyword {
            font-weight: 900;
            color: #9b59b6;
            text-decoration: underline;
            text-underline-offset: 10px;
            text-decoration-thickness: 4px;
        }
        .stats-box {
            background-color: #f5f0e6;
            padding: 40px;
            border-radius: 25px;
            margin: 60px 0;
            border-left: 10px solid #2196f3;
            display: flex;
            flex-wrap: wrap;
            gap: 45px;
            justify-content: center;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 250px;
        }
        .stat-value {
            font-size: 48px;
            font-weight: 900;
            color: #9b59b6;
            margin-bottom: 15px;
        }
        .stat-label {
            font-size: 20px;
            color: #4a4a4a;
            font-weight: 500;
        }
        .img-container {
            margin: 80px 0;
            text-align: center;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            margin-top: 30px;
            font-size: 19px;
            color: #555555;
            font-style: italic;
            padding: 0 35px 30px;
            background-color: #ffffff;
        }
        .btn-container {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin: 90px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 25px 50px;
            border-radius: 45px;
            font-size: 25px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 18px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #4caf50;
            color: white;
        }
        .download-btn:hover {
            background-color: #388e3c;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(76, 175, 80, 0.5);
        }
        .login-btn {
            background-color: #2196f3;
            color: white;
        }
        .login-btn:hover {
            background-color: #1976d2;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(33, 150, 243, 0.5);
        }
        ul, ol {
            margin: 40px 0 50px 80px;
        }
        li {
            margin-bottom: 30px;
            font-size: 20px;
            line-height: 2.0;
        }
        ul li::marker {
            color: #ffeb3b;
            font-size: 25px;
        }
        ol li::marker {
            color: #9b59b6;
            font-weight: 700;
            font-size: 22px;
        }
        .guide-card {
            background-color: #f9f4e9;
            padding: 45px;
            border-radius: 25px;
            margin: 70px 0;
            border-top: 7px solid #2196f3;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .guide-card h3 {
            margin-top: 0;
        }
        .tip-box {
            background-color: #fff8e6;
            padding: 35px;
            border-radius: 18px;
            margin: 40px 0;
            border-left: 6px solid #ffc107;
        }
        .tip-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: #e65100;
        }
        .event-card {
            background-color: #fdf2f8;
            padding: 45px;
            border-radius: 25px;
            margin: 70px 0;
            border-top: 7px solid #e91e63;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .community-discussion {
            background-color: #e8f4f8;
            padding: 45px;
            border-radius: 25px;
            margin: 70px 0;
            border-top: 7px solid #9b59b6;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .discussion-topic {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            margin: 35px 0;
            border-left: 5px solid #2196f3;
        }
        .discussion-topic h4 {
            margin-top: 0;
            margin-bottom: 20px;
        }
        .game-types {
            background-color: #f0e6d2;
            padding: 50px;
            border-radius: 25px;
            margin: 100px 0 60px;
            border-left: 10px solid #9b59b6;
        }
        .game-types h3 {
            margin-top: 0;
            color: #9b59b6;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .type-link {
            background-color: #d7ccc8;
            color: #9b59b6;
            padding: 18px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        .type-link:hover {
            background-color: #bcafa6;
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(155, 89, 182, 0.3);
        }
        .tags {
            background-color: #faf0f5;
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0 100px;
            border-left: 10px solid #e91e63;
        }
        .tags h3 {
            margin-top: 0;
            color: #e91e63;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 40px;
        }
        .tag-link {
            background-color: #fce4ec;
            color: #e91e63;
            padding: 15px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-size: 19px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-link:hover {
            background-color: #f8ccd8;
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
        }
        .recommendation {
            background-color: #fff8e6;
            padding: 50px;
            border-radius: 25px;
            margin: 90px 0;
            text-align: center;
            border: 5px solid #ffeb3b;
            box-shadow: 0 10px 30px rgba(255, 235, 59, 0.3);
        }
        .recommendation p {
            font-size: 24px;
            font-weight: 700;
            color: #e65100;
            margin-bottom: 0;
            text-align: center;
        }
        .recommendation a {
            color: #9b59b6;
            font-weight: 900;
            text-decoration: underline;
            text-underline-offset: 8px;
        }
        .copyright {
            text-align: center;
            padding: 50px;
            background-color: #9b59b6;
            color: #ffffff;
            margin-top: 150px;
            border-top: 7px solid #ffeb3b;
        }
        .copyright p {
            text-align: center;
            margin-bottom: 25px;
            font-size: 20px;
        }
        .copyright a {
            color: #ffeb3b;
            text-decoration: none;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 42px;
                margin: 70px 0 45px;
                padding-bottom: 30px;
            }
            h2 {
                font-size: 34px;
                margin: 80px 0 40px;
            }
            h3 {
                font-size: 28px;
                margin: 60px 0 32px;
            }
            h4 {
                font-size: 24px;
                margin: 45px 0 28px;
            }
            .btn {
                padding: 22px 45px;
                font-size: 23px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .img-container {
                margin: 70px 0;
            }
            ul, ol {
                margin: 35px 0 45px 60px;
            }
            p {
                font-size: 19px;
                margin-bottom: 32px;
            }
            .game-types, .tags {
                padding: 40px;
                margin: 80px 0;
            }
            .type-list, .tag-list {
                gap: 25px;
            }
            .stats-box {
                padding: 35px;
                gap: 35px;
            }
            .stat-value {
                font-size: 42px;
            }
            .guide-card, .event-card, .community-discussion {
                padding: 35px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 30px;
            }
            h3 {
                font-size: 26px;
            }
            h4 {
                font-size: 22px;
            }
            .logo {
                font-size: 32px;
            }
            .nav-container {
                padding: 0 20px;
            }
            .container {
                padding: 0 20px;
            }
            .recommendation {
                padding: 35px 20px;
            }
            .recommendation p {
                font-size: 22px;
            }
            .stat-item {
                min-width: 200px;
            }
            .stat-value {
                font-size: 38px;
            }
        }
