* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f7fff7;
            color: #2d3142;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #1a535c;
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.18);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #ffe66d;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links li a:hover {
            color: #ffe66d;
            border-bottom: 3px solid #ffe66d;
        }
        .daman-link {
            background-color: #ffe66d;
            padding: 10px 22px;
            border-radius: 30px;
            color: #1a535c !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #ffd166;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(255, 230, 109, 0.35);
        }
        .download-nav-btn {
            background-color: #ff6b6b;
            padding: 10px 22px;
            border-radius: 30px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .download-nav-btn:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(255, 107, 107, 0.35);
        }
        .login-nav-btn {
            background-color: #4ecdc4;
            padding: 10px 22px;
            border-radius: 30px;
            color: #1a535c !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .login-nav-btn:hover {
            background-color: #3dbbb4;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(78, 205, 196, 0.35);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #ffe66d;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #1a535c;
                padding: 35px 25px;
                gap: 25px;
                border-top: 1px solid rgba(255,255,255,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 30px;
            }
        }
        h1 {
            font-size: 42px;
            color: #1a535c;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #ffe66d;
            padding-bottom: 25px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 34px;
            color: #1a535c;
            margin: 70px 0 35px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🦌";
            font-size: 36px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 85%;
            background-color: #ffe66d;
            border-radius: 3px;
        }
        h3 {
            font-size: 28px;
            color: #2f7d7a;
            margin: 50px 0 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: "⚡";
            font-size: 26px;
        }
        h4 {
            font-size: 22px;
            color: #3d8a87;
            margin: 35px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "🔹";
            font-size: 18px;
        }
        p {
            margin-bottom: 28px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 4px 8px;
            border-radius: 5px;
            font-weight: 700;
            color: #e65100;
            border: 1px solid #ffdca9;
        }
        .keyword {
            font-weight: 900;
            color: #1a535c;
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 2px;
        }
        .stats-box {
            background-color: #e8f4f8;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 6px solid #4ecdc4;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        .stat-value {
            font-size: 36px;
            font-weight: 900;
            color: #1a535c;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 16px;
            color: #4a5568;
            font-weight: 500;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            margin-top: 20px;
            font-size: 16px;
            color: #4a5568;
            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 40px;
            border-radius: 35px;
            font-size: 21px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #ff6b6b;
            color: white;
        }
        .download-btn:hover {
            background-color: #ff5252;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
        }
        .login-btn {
            background-color: #4ecdc4;
            color: #1a535c;
        }
        .login-btn:hover {
            background-color: #3dbbb4;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
        }
        ul, ol {
            margin: 30px 0 40px 60px;
        }
        li {
            margin-bottom: 22px;
            font-size: 18px;
            line-height: 1.8;
        }
        ul li::marker {
            color: #ffe66d;
            font-size: 20px;
        }
        ol li::marker {
            color: #1a535c;
            font-weight: 700;
            font-size: 18px;
        }
        .guide-card {
            background-color: #f0f8fb;
            padding: 35px;
            border-radius: 15px;
            margin: 50px 0;
            border-top: 5px solid #4ecdc4;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .guide-card h3 {
            margin-top: 0;
        }
        .tip-box {
            background-color: #fff8e6;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 4px solid #ffb74d;
        }
        .tip-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: #e65100;
        }
        .event-card {
            background-color: #fdf2f8;
            padding: 35px;
            border-radius: 15px;
            margin: 50px 0;
            border-top: 5px solid #ff6b6b;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .community-discussion {
            background-color: #f5fafe;
            padding: 35px;
            border-radius: 15px;
            margin: 50px 0;
            border-top: 5px solid #1a535c;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .discussion-topic {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 3px solid #4ecdc4;
        }
        .discussion-topic h4 {
            margin-top: 0;
            margin-bottom: 10px;
        }
        .game-types {
            background-color: #eaf6fa;
            padding: 40px;
            border-radius: 15px;
            margin: 80px 0 40px;
            border-left: 6px solid #1a535c;
        }
        .game-types h3 {
            margin-top: 0;
            color: #1a535c;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        .type-link {
            background-color: #d4e6ec;
            color: #1a535c;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .type-link:hover {
            background-color: #b3d4e0;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(26, 83, 92, 0.2);
        }
        .tags {
            background-color: #faf0f5;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0 80px;
            border-left: 6px solid #ff6b6b;
        }
        .tags h3 {
            margin-top: 0;
            color: #ff6b6b;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }
        .tag-link {
            background-color: #fce4ec;
            color: #ff6b6b;
            padding: 10px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-link:hover {
            background-color: #f8ccd8;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.2);
        }
        .recommendation {
            background-color: #fff8e6;
            padding: 40px;
            border-radius: 15px;
            margin: 70px 0;
            text-align: center;
            border: 3px solid #ffe66d;
            box-shadow: 0 6px 18px rgba(255, 230, 109, 0.2);
        }
        .recommendation p {
            font-size: 20px;
            font-weight: 700;
            color: #e65100;
            margin-bottom: 0;
            text-align: center;
        }
        .recommendation a {
            color: #1a535c;
            font-weight: 900;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .copyright {
            text-align: center;
            padding: 30px;
            background-color: #1a535c;
            color: #ffffff;
            margin-top: 100px;
            border-top: 5px solid #ffe66d;
        }
        .copyright p {
            text-align: center;
            margin-bottom: 15px;
            font-size: 17px;
        }
        .copyright a {
            color: #ffe66d;
            text-decoration: none;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 34px;
                margin: 50px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 28px;
                margin: 60px 0 30px;
            }
            h3 {
                font-size: 24px;
                margin: 40px 0 25px;
            }
            h4 {
                font-size: 20px;
                margin: 30px 0 18px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 19px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .img-container {
                margin: 50px 0;
            }
            ul, ol {
                margin: 25px 0 35px 40px;
            }
            p {
                font-size: 17px;
                margin-bottom: 25px;
            }
            .game-types, .tags {
                padding: 30px;
                margin: 60px 0;
            }
            .type-list, .tag-list {
                gap: 15px;
            }
            .stats-box {
                padding: 25px;
                gap: 25px;
            }
            .stat-value {
                font-size: 30px;
            }
            .guide-card, .event-card, .community-discussion {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            h4 {
                font-size: 19px;
            }
            .logo {
                font-size: 26px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .container {
                padding: 0 15px;
            }
            .recommendation {
                padding: 25px 15px;
            }
            .recommendation p {
                font-size: 18px;
            }
            .stat-item {
                min-width: 150px;
            }
            .stat-value {
                font-size: 26px;
            }
        }
