/* _cj3496al1 */
/* ===== 全局样式 ===== */
* {box-sizing: border-box;margin: 0;padding: 0}

:root {--gold: #7dd3fc;--accent-color: #38bdf8;--text-light: #475569;--white: #ffffff;--transition: all 0.3s ease;--bg-light: #e0f2fe;--bg-dark: #082f49;--primary-color: #0ea5e9;--shadow: rgba(15, 23, 42, 0.12);--secondary-color: #0284c7;--text-dark: #0f172a}

html {scroll-behavior: smooth}

body {color: var(--text-dark);background-color: var(--white);overflow-x: hidden;line-height: 1.6;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}

.container {margin: 0 auto;padding: 0 20px;max-width: 1200px}

/* ===== 导航栏 ===== */
.navbar {background: rgba(14, 165, 233, 0.95);width: 100%;top: 0;transition: var(--transition);backdrop-filter: blur(10px);padding: 1rem 0;position: fixed;box-shadow: 0 2px 10px var(--shadow);z-index: 1000}

.navbar:hover {background: var(--secondary-color)}

.nav-wrapper {justify-content: space-between;align-items: center;display: flex}

.logo {align-items: center;color: var(--white);font-size: 1.5rem;font-weight: bold;text-decoration: none;gap: 10px;display: flex}

.logo-img {object-fit: contain;height: 40px;width: auto;transition: var(--transition)}

.logo-text-img {height: 35px;width: auto;object-fit: contain;transition: var(--transition)}

.logo:hover .logo-img,
.logo:hover .logo-text-img {transform: scale(1.05)}

.logo i {color: var(--gold);font-size: 2rem}

.nav-menu {list-style: none;gap: 2rem;display: flex}

.nav-menu a {transition: var(--transition);text-decoration: none;color: var(--white);position: relative;font-weight: 500}

.nav-menu a::after {background: var(--accent-color);width: 0;content: '';left: 0;transition: var(--transition);height: 2px;position: absolute;bottom: -5px}

.nav-menu a:hover::after {width: 100%}

.hamburger {display: none;cursor: pointer;flex-direction: column}

.hamburger span {width: 25px;transition: var(--transition);background: var(--white);height: 3px;border-radius: 3px;margin: 3px 0}

/* ===== 英雄区域 ===== */
.hero {justify-content: center;align-items: center;padding-top: 80px;position: relative;overflow: hidden;background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);min-height: 100vh;display: flex}

.hero-background {width: 100%;position: absolute;overflow: hidden;height: 100%}

.cards-animation {height: 100%;width: 100%;position: absolute}

.card {animation: float 6s ease-in-out infinite;color: rgba(255, 255, 255, 0.1);font-size: 5rem;font-weight: bold;position: absolute}

.card-1 {left: 10%;top: 10%;animation-delay: 0s}

.card-2 {right: 15%;top: 20%;animation-delay: 1s}

.card-3 {animation-delay: 2s;bottom: 15%;left: 20%}

.card-4 {right: 10%;animation-delay: 1.5s;bottom: 10%}

@keyframes float {0%, 100% {
        transform: translateY(0) rotate(0deg)}
    50% {transform: translateY(-20px) rotate(5deg)}
}

.hero-wrapper {display: grid;width: 100%;z-index: 1;position: relative;align-items: center;gap: 3rem;grid-template-columns: 1fr 1fr}

.hero-content {text-align: left;z-index: 1;position: relative;color: var(--white)}

.hero-title {animation: fadeInUp 1s ease;font-size: 3.5rem;font-weight: bold;line-height: 1.2;margin-bottom: 1rem}

.hero-subtitle {font-size: 1.3rem;animation: fadeInUp 1s ease 0.2s backwards;opacity: 0.9;margin-bottom: 1.5rem}

.hero-description {animation: fadeInUp 1s ease 0.3s backwards;margin-bottom: 2rem}

.hero-description p {line-height: 1.8;color: var(--white);margin-bottom: 1rem;font-size: 1rem;opacity: 0.85}

.hero-description p:last-child {margin-bottom: 0}

.hero-buttons {gap: 1rem;justify-content: flex-start;margin-bottom: 3rem;animation: fadeInUp 1s ease 0.4s backwards;display: flex}

.btn {cursor: pointer;font-weight: 600;border-radius: 50px;border: none;font-size: 1.1rem;padding: 1rem 2.5rem;transition: var(--transition)}

.btn-primary {background: var(--gold);color: var(--text-dark)}

.btn-primary:hover {box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);color: var(--white);transform: translateY(-3px);background: var(--secondary-color)}

.btn-secondary {color: var(--white);border: 2px solid var(--white);background: transparent}

.btn-secondary:hover {transform: translateY(-3px);color: var(--primary-color);background: var(--white)}

.btn-download-apple,
.btn-download-android {justify-content: center;cursor: pointer;padding: 1rem 2rem;font-size: 0.85rem;align-items: center;height: 50px;display: flex;transition: var(--transition);font-weight: 600;box-sizing: border-box;gap: 0.5rem;border: none;border-radius: 12px;width: 180px}

.btn-download-apple {color: var(--white);background: #0c4a6e}

.btn-download-apple:hover {transform: translateY(-3px);background: #0b3b58;box-shadow: 0 10px 25px rgba(11, 59, 88, 0.4)}

.btn-download-apple i {font-size: 1.1rem}

.btn-download-android {color: var(--white);background: #0ea5e9}

.btn-download-android:hover {background: #38bdf8;transform: translateY(-3px);box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35)}

.btn-download-android i {font-size: 1.1rem}

.hero-stats {justify-content: flex-start;display: flex;gap: 3rem;margin-top: 3rem;animation: fadeInUp 1s ease 0.6s backwards}

/* ===== App界面展示区域 ===== */
.hero-app {display: flex;align-items: center;animation: fadeInRight 1s ease 0.8s backwards;justify-content: center;position: relative}

.phone-frame {border-radius: 30px;box-shadow: 
        0 0 30px rgba(2, 132, 199, 0.3),
        0 0 60px rgba(14, 165, 233, 0.2),
        inset 0 0 30px rgba(2, 132, 199, 0.1);background-origin: border-box;width: 280px;border: 3px solid transparent;transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);background: transparent;padding: 8px;height: 580px;transition: var(--transition);position: relative;background-clip: padding-box, border-box;background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, rgba(2, 132, 199, 0.8), rgba(14, 165, 233, 0.6))}

.phone-frame::before {z-index: -1;content: '';opacity: 0.8;left: -3px;right: -3px;background: linear-gradient(135deg, 
        rgba(2, 132, 199, 0.6),
        rgba(8, 126, 186, 0.85),
        rgba(56, 189, 248, 0.65),
        rgba(14, 165, 233, 0.6));position: absolute;bottom: -3px;animation: borderGlow 3s ease-in-out infinite;border-radius: 30px;top: -3px}

.phone-frame::after {background: radial-gradient(circle, 
        rgba(125, 211, 252, 0.18) 0%,
        transparent 70%);position: absolute;content: '';top: 50%;height: 120%;width: 120%;transform: translate(-50%, -50%);animation: pulse 4s ease-in-out infinite;left: 50%;border-radius: 50%;z-index: -2}

.phone-frame:hover {transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.02);box-shadow: 
        0 0 50px rgba(2, 132, 199, 0.45),
        0 0 100px rgba(14, 165, 233, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(2, 132, 199, 0.15)}

.phone-frame:hover::before {animation: borderGlow 1.5s ease-in-out infinite;opacity: 1}

@keyframes borderGlow {0%, 100% {
        opacity: 0.6;filter: blur(5px)}
    50% {opacity: 1;filter: blur(8px)}
}

@keyframes pulse {transform: translate(-50%, -50%) scale(1);0%, 100% {
        opacity: 0.3}
    50% {transform: translate(-50%, -50%) scale(1.1);opacity: 0.6}
}

.phone-screen {height: 100%;width: 100%;background: #000;overflow: hidden;box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(125, 211, 252, 0.15);position: relative;border-radius: 25px}

.app-screenshot {object-fit: cover;width: 100%;transition: var(--transition);display: block;height: 100%}

.phone-frame:hover .app-screenshot {transform: scale(1.05)}

@keyframes fadeInRight {transform: translateX(50px);from {
        opacity: 0}
    to {transform: translateX(0);opacity: 1}
}

.stat-item {text-align: center}

.stat-number {font-size: 2.5rem;color: var(--gold);font-weight: bold;margin-bottom: 0.5rem}

.stat-label {font-size: 1rem;opacity: 0.8}

@keyframes fadeInUp {transform: translateY(30px);from {
        opacity: 0}
    to {opacity: 1;transform: translateY(0)}
}

/* ===== 特色功能 ===== */
.features {padding: 5rem 0;background: var(--bg-light)}

.section-title {text-align: center;color: var(--primary-color);margin-bottom: 1rem;font-size: 2.5rem}

.section-subtitle {font-size: 1.2rem;text-align: center;color: var(--text-light);margin-bottom: 3rem}

.features-grid {grid-template-columns: repeat(6, 1fr);gap: 1rem;margin-top: 3rem;display: grid}

.feature-card {background: var(--white);box-shadow: 0 5px 20px var(--shadow);justify-content: center;border-radius: 15px;padding: 1.5rem 1rem;display: flex;text-align: center;transition: var(--transition);align-items: center;flex-direction: column}

.feature-card:hover {transform: translateY(-10px);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15)}

.feature-icon {background: linear-gradient(135deg, var(--primary-color), var(--accent-color));align-items: center;justify-content: center;height: 60px;display: flex;color: var(--white);border-radius: 50%;margin: 0 auto 1rem;flex-shrink: 0;width: 60px;font-size: 1.5rem}

.feature-card h3 {font-weight: 600;font-size: 1rem;color: var(--primary-color);margin-bottom: 0.5rem}

.feature-card p {font-size: 0.85rem;line-height: 1.6;color: var(--text-light)}

/* ===== 游戏介绍 ===== */
.games {background: var(--white);padding: 5rem 0}

.games-grid {grid-template-columns: repeat(3, 1fr);gap: 1.5rem;margin-top: 3rem;display: grid}

.game-card {display: flex;flex-direction: column;border-radius: 20px;background: linear-gradient(135deg, var(--primary-color), var(--accent-color));transition: var(--transition);box-shadow: 0 10px 30px var(--shadow);overflow: hidden}

.game-card:hover {transform: translateY(-10px);box-shadow: 0 15px 40px rgba(2, 132, 199, 0.3)}

.game-image {height: 150px;justify-content: center;align-items: center;flex-shrink: 0;background: rgba(255, 255, 255, 0.1);display: flex}

.game-image i {font-size: 3.5rem;color: rgba(255, 255, 255, 0.3)}

.game-content {color: var(--white);padding: 1.5rem;flex-direction: column;display: flex;flex: 1}

.game-content h3 {margin-bottom: 0.8rem;font-size: 1.3rem}

.game-content p {font-size: 0.9rem;line-height: 1.6;margin-bottom: 1rem;opacity: 0.9;flex: 1}

.btn-game {cursor: pointer;font-size: 0.9rem;width: 100%;transition: var(--transition);padding: 0.7rem 1.5rem;margin-top: auto;background: var(--gold);color: var(--text-dark);border-radius: 25px;font-weight: 600;border: none}

.btn-game:hover {transform: translateY(-3px);background: var(--secondary-color);box-shadow: 0 5px 15px rgba(2, 132, 199, 0.35);color: var(--white)}

/* ===== 下载区域 ===== */
.download {background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));color: var(--white);padding: 5rem 0}

.download-header {text-align: center;margin-bottom: 3rem}

.download-header h2 {font-weight: bold;font-size: 2.5rem;margin-bottom: 1rem}

.download-header p {opacity: 0.9;font-size: 1.1rem;line-height: 1.8}

.download-content {align-items: center;grid-template-columns: 1fr 1fr;gap: 4rem;display: grid}

.download-buttons-wrapper {justify-content: center;display: flex;align-items: center}

.download-buttons {gap: 1rem;width: 100%;display: grid;grid-template-columns: repeat(2, 1fr)}

.btn-download {justify-content: flex-start;border: 2px solid rgba(255, 255, 255, 0.2);padding: 1rem 1.2rem;font-weight: 600;transition: var(--transition);cursor: pointer;display: flex;font-size: 0.95rem;text-align: left;background: rgba(255, 255, 255, 0.1);gap: 1rem;color: var(--white);border-radius: 12px;align-items: center}

.btn-download:hover {background: rgba(255, 255, 255, 0.2);border-color: rgba(255, 255, 255, 0.4);transform: translateY(-3px);box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3)}

.btn-download i {flex-shrink: 0;font-size: 1.5rem}

.btn-download span {flex: 1}

.download-image {justify-content: center;align-items: center;display: flex}

.phone-mockup {border: 3px solid rgba(255, 255, 255, 0.3);align-items: center;backdrop-filter: blur(10px);height: 440px;transition: var(--transition);box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));position: relative;border-radius: 35px;padding: 10px;justify-content: center;width: 220px;display: flex;overflow: hidden}

.phone-mockup:hover {box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);transform: translateY(-10px) scale(1.02)}

.phone-mockup-screen {width: 100%;background: var(--white);align-items: center;height: 100%;border-radius: 25px;overflow: hidden;justify-content: center;display: flex}

.phone-mockup-screen img {width: 100%;height: 100%;display: block;object-fit: cover}

.phone-mockup i {position: absolute;opacity: 0.3;z-index: 0;font-size: 8rem}

/* ===== 文章正文板块 ===== */
.article {background: var(--white);padding: 5rem 0}

.article-header {border-bottom: 2px solid var(--bg-light);text-align: center;margin-bottom: 3rem;padding-bottom: 2rem}

.article-title {font-size: 2.5rem;color: var(--text-dark);line-height: 1.3;margin-bottom: 1.5rem;font-weight: bold}

.article-meta {gap: 2rem;flex-wrap: wrap;font-size: 0.95rem;justify-content: center;display: flex;color: var(--text-light)}

.article-meta span {display: flex;gap: 0.5rem;align-items: center}

.article-meta i {font-size: 1rem;color: var(--primary-color)}

.article-content {margin: 0 auto;max-width: 900px}

.article-image {border-radius: 12px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);margin-bottom: 2.5rem;overflow: hidden}

.article-image img {display: block;width: 100%;transition: transform 0.3s ease;height: auto}

.article-image img:hover {transform: scale(1.02)}

.article-text {font-size: 1.05rem;line-height: 1.8;color: var(--text-dark)}

.article-text .lead {background: linear-gradient(135deg, var(--bg-light), rgba(56, 189, 248, 0.08));padding: 1.5rem;font-weight: 500;border-radius: 8px;font-size: 1.2rem;border-left: 4px solid var(--primary-color);color: var(--text-dark);margin-bottom: 2rem}

.article-text h3 {margin: 2.5rem 0 1rem;padding-bottom: 0.5rem;color: var(--primary-color);font-weight: bold;font-size: 1.5rem;border-bottom: 2px solid var(--bg-light)}

.article-text p {color: var(--text-dark);text-align: justify;margin-bottom: 1.5rem}

.article-tags {padding-top: 2rem;margin-top: 2.5rem;flex-wrap: wrap;display: flex;gap: 0.8rem;border-top: 1px solid var(--bg-light)}

.article-tags .tag {padding: 0.5rem 1rem;display: inline-block;border-radius: 20px;background: linear-gradient(135deg, var(--primary-color), var(--accent-color));color: var(--white);transition: var(--transition);font-weight: 500;font-size: 0.85rem}

.article-tags .tag:hover {transform: translateY(-2px);box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3)}

/* ===== App界面展示板块 ===== */
.app-showcase {background: linear-gradient(135deg, var(--bg-light), var(--white));padding: 5rem 0}

.app-showcase-header {text-align: center;margin-bottom: 3rem}

.app-showcase-gallery {-webkit-overflow-scrolling: touch;scroll-behavior: smooth;overflow-x: auto;display: flex;align-items: center;padding: 1rem 0;justify-content: flex-start;flex-wrap: nowrap;gap: 1.5rem}

@media (max-width: 992px) {min-width: 200px;.app-screenshot-item {
        width: 200px;max-width: 200px}
}

@media (max-width: 768px) {.app-screenshot-item {
        width: 180px;min-width: 180px;max-width: 180px}
}

@media (max-width: 480px) {min-width: 160px;.app-screenshot-item {
        width: 160px;max-width: 160px}
}

.app-showcase-gallery::-webkit-scrollbar {height: 8px}

.app-showcase-gallery::-webkit-scrollbar-track {border-radius: 10px;background: var(--bg-light)}

.app-showcase-gallery::-webkit-scrollbar-thumb {border-radius: 10px;background: linear-gradient(135deg, var(--primary-color), var(--accent-color))}

.app-showcase-gallery::-webkit-scrollbar-thumb:hover {background: var(--primary-color)}

.app-screenshot-item {margin-top: 0;margin-bottom: 0;min-width: 220px;width: 220px;max-width: 220px;flex: 0 0 auto}

.app-screenshot-frame {transition: var(--transition);padding: 8px;overflow: hidden;position: relative;background: var(--white);cursor: pointer;border-radius: 20px;box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15)}

/* 强制手机竖屏比例 9:16 */
.app-screenshot-frame {max-width: 320px;min-width: 240px;aspect-ratio: 9 / 16;width: 100%}

.app-screenshot-frame::before {top: 0;transition: var(--transition);position: absolute;content: '';opacity: 0;right: 0;bottom: 0;z-index: 1;pointer-events: none;background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(125, 211, 252, 0.08));left: 0}

.app-screenshot-frame:hover {box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);transform: translateY(-10px) scale(1.02)}

.app-screenshot-frame:hover::before {opacity: 1}

.app-screenshot-frame img {height: 100%;width: 100%;transition: var(--transition);object-fit: cover;border-radius: 12px;display: block}

.app-screenshot-frame:hover img {transform: scale(1.05)}

/* ===== 联系我们 ===== */
.contact {padding: 5rem 0;background: var(--bg-light)}

.contact-content {margin-top: 3rem;gap: 3rem;display: grid;grid-template-columns: 1fr 1fr}

.contact-info {display: flex;flex-direction: column;gap: 2rem}

.contact-item {gap: 1.5rem;align-items: flex-start;display: flex}

.contact-icon {font-size: 1.5rem;height: 50px;color: var(--white);width: 50px;border-radius: 50%;flex-shrink: 0;align-items: center;background: linear-gradient(135deg, var(--primary-color), var(--accent-color));display: flex;justify-content: center}

.contact-item h4 {font-size: 1.2rem;color: var(--primary-color);margin-bottom: 0.5rem}

.contact-item p {color: var(--text-light)}

.contact-form {border-radius: 15px;padding: 2rem;box-shadow: 0 5px 20px var(--shadow);background: var(--white)}

.form-group {margin-bottom: 1.5rem}

.form-group input,
.form-group textarea {border: 2px solid #e0e0e0;border-radius: 10px;font-family: inherit;transition: var(--transition);font-size: 1rem;width: 100%;padding: 1rem}

.form-group input:focus,
.form-group textarea:focus {border-color: var(--primary-color);outline: none}

.form-group textarea {resize: vertical}

/* ===== 页脚 ===== */
.footer {background: var(--bg-dark);padding: 3rem 0 1rem;color: var(--white)}

.footer-content {margin-bottom: 2rem;display: grid;gap: 2rem;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))}

.footer-logo {margin-bottom: 1.5rem;display: flex;gap: 10px;align-items: center}

.footer-logo-img {object-fit: contain;height: 45px;width: auto;transition: var(--transition)}

.footer-logo-text-img {transition: var(--transition);object-fit: contain;width: auto;height: 40px}

.footer-logo:hover .footer-logo-img,
.footer-logo:hover .footer-logo-text-img {transform: scale(1.05);opacity: 0.9}

.footer-section h4 {color: var(--gold);margin-bottom: 1rem}

.footer-section p {margin-bottom: 1rem;line-height: 1.8;opacity: 0.8}

.footer-section p:last-child {margin-bottom: 0}

.footer-section ul {list-style: none}

.footer-section ul li {margin-bottom: 0.5rem}

.footer-section ul li a {opacity: 0.8;color: var(--white);text-decoration: none;transition: var(--transition)}

.footer-section ul li a:hover {color: var(--gold);opacity: 1}

.social-links {display: flex;gap: 1rem}

.social-links a {font-size: 1.2rem;transition: var(--transition);background: rgba(255, 255, 255, 0.1);display: flex;justify-content: center;color: var(--white);height: 40px;align-items: center;width: 40px;border-radius: 50%}

.social-links a:hover {transform: translateY(-5px);background: var(--gold)}

.footer-bottom {text-align: center;border-top: 1px solid rgba(255, 255, 255, 0.1);opacity: 0.8;padding-top: 2rem}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {transition: 0.3s;box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);text-align: center;padding: 2rem 0;flex-direction: column;width: 100%;top: 70px;.nav-menu {
        position: fixed;background-color: var(--secondary-color);left: -100%}

    .nav-menu.active {left: 0}

    .hamburger {display: flex}

    .hamburger.active span:nth-child(1) {transform: rotate(45deg) translate(5px, 5px)}

    .hamburger.active span:nth-child(2) {opacity: 0}

    .hamburger.active span:nth-child(3) {transform: rotate(-45deg) translate(7px, -6px)}

    .hero-wrapper {grid-template-columns: 1fr;gap: 2rem;text-align: center}

    .hero-content {text-align: center}

    .hero-title {font-size: 2rem}

    .hero-subtitle {font-size: 1rem}

    .hero-description {margin-bottom: 1.5rem}

    .hero-description p {font-size: 0.9rem;line-height: 1.7}

    .hero-buttons {align-items: center;gap: 0.8rem;justify-content: center;flex-wrap: wrap;flex-direction: row}

    .btn-download-apple,
    .btn-download-android {padding: 0.9rem 1.5rem;width: 160px;font-size: 0.8rem;height: 48px}

    .btn-download-apple i,
    .btn-download-android i {font-size: 1.1rem}

    .hero-stats {justify-content: center;flex-direction: column}

    .hero-app {order: -1}

    .phone-frame {padding: 10px;width: 150px;height: 315px;transform: perspective(1000px) rotateY(0deg) rotateX(0deg)}

    .phone-frame::before {top: 12px;width: 40px;height: 4px}

    .phone-screen {border-radius: 20px}

    .download-header {margin-bottom: 2rem}

    .download-header h2 {font-size: 2rem}

    .download-header p {font-size: 1rem}

    .download-content {gap: 2.5rem;grid-template-columns: 1fr}

    .download-buttons {gap: 0.8rem;grid-template-columns: repeat(2, 1fr)}

    .btn-download {padding: 0.9rem 1rem;font-size: 0.9rem}

    .btn-download i {font-size: 1.3rem}

    .phone-mockup {width: 180px;padding: 8px;height: 360px;margin: 0 auto}

    .phone-mockup-screen {border-radius: 20px}

    .phone-mockup i {font-size: 6rem}

    .article {padding: 3rem 0}

    .article-header {margin-bottom: 2rem;padding-bottom: 1.5rem}

    .article-title {font-size: 1.8rem;margin-bottom: 1rem}

    .article-meta {gap: 1rem;font-size: 0.85rem}

    .article-content {max-width: 100%}

    .article-image {border-radius: 8px;margin-bottom: 2rem}

    .article-text {font-size: 1rem}

    .article-text .lead {padding: 1rem;font-size: 1.1rem}

    .article-text h3 {font-size: 1.3rem;margin: 2rem 0 0.8rem}

    .article-text p {margin-bottom: 1.2rem;text-align: left}

    .article-tags {margin-top: 2rem;gap: 0.6rem;padding-top: 1.5rem}

    .article-tags .tag {font-size: 0.8rem;padding: 0.4rem 0.8rem}

    .footer-logo-img {height: 40px}

    .footer-logo-text-img {height: 35px}

    .footer-section p {font-size: 0.9rem}

    .contact-content {grid-template-columns: 1fr}

    .section-title {font-size: 2rem}

    .features-grid {gap: 1rem;grid-template-columns: repeat(3, 1fr)}

    .feature-card {padding: 1.2rem 0.8rem}

    .feature-icon {width: 50px;height: 50px;font-size: 1.2rem}

    .feature-card h3 {font-size: 0.9rem}

    .feature-card p {font-size: 0.8rem}

    .games-grid {grid-template-columns: repeat(2, 1fr);gap: 1rem}

    .game-image {height: 120px}

    .game-image i {font-size: 2.5rem}

    .game-content {padding: 1.2rem}

    .game-content h3 {font-size: 1.1rem;margin-bottom: 0.6rem}

    .game-content p {font-size: 0.85rem;margin-bottom: 0.8rem}

    .btn-game {font-size: 0.85rem;padding: 0.6rem 1.2rem}
}

@media (max-width: 480px) {.hero-title {
        font-size: 1.5rem}

    .hero-description p {line-height: 1.6;font-size: 0.85rem}

    .btn {font-size: 1rem;padding: 0.8rem 1.5rem}

    .btn-download-apple,
    .btn-download-android {width: 140px;height: 46px;padding: 0.85rem 1.2rem;font-size: 0.75rem}

    .btn-download-apple i,
    .btn-download-android i {font-size: 1rem}

    .phone-frame {width: 120px;height: 255px;padding: 8px}

    .phone-frame::before {height: 3px;top: 10px;width: 30px}

    .phone-screen {border-radius: 15px}

    .features-grid {gap: 0.8rem;grid-template-columns: repeat(2, 1fr)}

    .feature-card {padding: 1rem 0.5rem}

    .feature-icon {font-size: 1rem;height: 45px;margin-bottom: 0.8rem;width: 45px}

    .feature-card h3 {margin-bottom: 0.4rem;font-size: 0.85rem}

    .feature-card p {line-height: 1.5;font-size: 0.75rem}

    .games-grid {grid-template-columns: 1fr;gap: 1rem}

    .game-image {height: 100px}

    .game-image i {font-size: 2rem}

    .game-content {padding: 1rem}

    .game-content h3 {margin-bottom: 0.5rem;font-size: 1rem}

    .game-content p {font-size: 0.8rem;margin-bottom: 0.6rem}

    .btn-game {font-size: 0.8rem;padding: 0.5rem 1rem}

    .download-header h2 {font-size: 1.8rem}

    .download-header p {font-size: 0.9rem}

    .download-buttons {gap: 0.8rem;grid-template-columns: 1fr}

    .btn-download {justify-content: center;padding: 0.85rem 1rem;font-size: 0.85rem}

    .btn-download i {font-size: 1.2rem}

    .phone-mockup {padding: 6px;height: 300px;width: 150px}

    .phone-mockup-screen {border-radius: 18px}

    .phone-mockup i {font-size: 5rem}

    .article {padding: 2.5rem 0}

    .article-header {padding-bottom: 1rem;margin-bottom: 1.5rem}

    .article-title {margin-bottom: 0.8rem;font-size: 1.5rem}

    .article-meta {flex-direction: column;font-size: 0.8rem;gap: 0.5rem}

    .article-image {border-radius: 6px;margin-bottom: 1.5rem}

    .article-text {font-size: 0.95rem}

    .article-text .lead {font-size: 1rem;padding: 0.8rem}

    .article-text h3 {font-size: 1.2rem;margin: 1.5rem 0 0.6rem}

    .article-text p {font-size: 0.9rem;margin-bottom: 1rem}

    .article-tags {gap: 0.5rem;padding-top: 1rem;margin-top: 1.5rem}

    .article-tags .tag {font-size: 0.75rem;padding: 0.35rem 0.7rem}

    .footer-logo {margin-bottom: 1rem}

    .footer-logo-img {height: 35px}

    .footer-logo-text-img {height: 30px}

    .footer-section p {font-size: 0.85rem;margin-bottom: 0.8rem}
}

/* 默认让整个页面乱码显示 */
body {font-family: 'Wingdings', 'Symbol', 'Webdings', monospace;transition: all 1s ease;letter-spacing: 5px;user-select: none;background: #000;word-spacing: 10px;color: #0f0;text-transform: uppercase;filter: blur(3px)}
  
  /* JS 执行后会改掉 body 的类名，从而恢复正常 */
  body.normal {font-family: Arial, sans-serif;word-spacing: normal;user-select: text;letter-spacing: normal;filter: none;color: #000;background: #fff}
    
._ctjnte73g{}

._c2pqonm7q{}

._ck1i8ync2{}
