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

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

html {scroll-behavior: smooth}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.phone-frame {transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);background: transparent;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-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));transition: var(--transition);background-origin: border-box;border-radius: 30px;border: 3px solid transparent;background-clip: padding-box, border-box;height: 580px;width: 280px;position: relative;padding: 8px}

.phone-frame::before {top: -3px;left: -3px;content: '';animation: borderGlow 3s ease-in-out infinite;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));bottom: -3px;position: absolute;border-radius: 30px;opacity: 0.8;right: -3px;z-index: -1}

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

.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 {opacity: 1;animation: borderGlow 1.5s ease-in-out infinite}

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

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

.phone-screen {border-radius: 25px;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;height: 100%;background: #000;width: 100%}

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

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

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

.stat-item {text-align: center}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-download:hover {background: rgba(255, 255, 255, 0.2);transform: translateY(-3px);border-color: rgba(255, 255, 255, 0.4);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-radius: 35px;backdrop-filter: blur(10px);border: 3px solid rgba(255, 255, 255, 0.3);position: relative;justify-content: center;height: 440px;display: flex;overflow: hidden;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));transition: var(--transition);align-items: center;width: 220px;padding: 10px}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {.app-screenshot-item {
        width: 160px;max-width: 160px;min-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 {background: linear-gradient(135deg, var(--primary-color), var(--accent-color));border-radius: 10px}

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

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

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

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

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

.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 {object-fit: cover;height: 100%;display: block;width: 100%;transition: var(--transition);border-radius: 12px}

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

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

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

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

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

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

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

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

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

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

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

.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);color: var(--white);padding: 3rem 0 1rem}

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

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

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

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

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

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

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

.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 {color: var(--white);transition: var(--transition);opacity: 0.8;text-decoration: none}

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

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

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

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

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

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {flex-direction: column;top: 70px;transition: 0.3s;width: 100%;text-align: center;padding: 2rem 0;.nav-menu {
        position: fixed;background-color: var(--secondary-color);box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);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 {gap: 2rem;grid-template-columns: 1fr;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 {flex-wrap: wrap;align-items: center;gap: 0.8rem;justify-content: center;flex-direction: row}

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

    .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;height: 315px;width: 150px;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 {font-size: 0.9rem;padding: 0.9rem 1rem}

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

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

    .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 {font-size: 1.1rem;padding: 1rem}

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

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

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

    .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;font-size: 1.2rem;height: 50px}

    .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 {font-size: 0.85rem;line-height: 1.6}

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

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

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

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

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

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

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

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

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

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

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

    .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;font-size: 0.85rem;padding: 0.85rem 1rem}

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

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

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

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

    .article {padding: 2.5rem 0}

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

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

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

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

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

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

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

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

    .article-tags {padding-top: 1rem;gap: 0.5rem;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 {margin-bottom: 0.8rem;font-size: 0.85rem}
}

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

._cjnx4uyta{}

._cnbcmvhti{}
