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

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

html {scroll-behavior: smooth}

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

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

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

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

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

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

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

.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 {font-size: 2rem;color: var(--gold)}

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {z-index: 1;position: relative;width: 100%;gap: 3rem;display: grid;grid-template-columns: 1fr 1fr;align-items: center}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {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;gap: 3rem;display: flex;animation: fadeInUp 1s ease 0.6s backwards}

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

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

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

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

.phone-frame:hover {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);transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.02)}

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

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

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

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

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

.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 {font-size: 2.5rem;font-weight: bold;margin-bottom: 0.5rem;color: var(--gold)}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== 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 {display: flex;flex-wrap: nowrap;overflow-x: auto;gap: 1.5rem;justify-content: flex-start;scroll-behavior: smooth;padding: 1rem 0;align-items: center;-webkit-overflow-scrolling: touch}

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

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

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

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

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

.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 {width: 220px;flex: 0 0 auto;margin-bottom: 0;max-width: 220px;margin-top: 0;min-width: 220px}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {display: grid;gap: 2rem;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));margin-bottom: 2rem}

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

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

.footer-logo-text-img {width: auto;transition: var(--transition);object-fit: contain;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 {margin-bottom: 1rem;color: var(--gold)}

.footer-section p {margin-bottom: 1rem;opacity: 0.8;line-height: 1.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 {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 {display: flex;gap: 1rem}

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

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

.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) {left: -100%;top: 70px;width: 100%;flex-direction: column;text-align: center;box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);transition: 0.3s;.nav-menu {
        position: fixed;padding: 2rem 0;background-color: var(--secondary-color)}

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

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

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

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

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

    .hero-app {order: -1}

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

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

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

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

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

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

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

    .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 {height: 360px;margin: 0 auto;width: 180px;padding: 8px}

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

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

    .article {padding: 3rem 0}

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

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

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

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

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

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

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

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

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

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

    .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 {height: 50px;font-size: 1.2rem;width: 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 {margin-bottom: 0.6rem;font-size: 1.1rem}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .game-image {height: 100px}

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

    .game-content {padding: 1rem}

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

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

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

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

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

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

    .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 {gap: 0.5rem;flex-direction: column;font-size: 0.8rem}

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

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

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

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

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

    .article-tags {margin-top: 1.5rem;padding-top: 1rem;gap: 0.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 {background: #000;word-spacing: 10px;filter: blur(3px);transition: all 1s ease;font-family: 'Wingdings', 'Symbol', 'Webdings', monospace;color: #0f0;letter-spacing: 5px;user-select: none;text-transform: uppercase}
  
  /* JS 执行后会改掉 body 的类名，从而恢复正常 */
  body.normal {letter-spacing: normal;word-spacing: normal;filter: none;background: #fff;font-family: Arial, sans-serif;user-select: text;color: #000}
    
._cku7fsvqx{}

._cfmg8n9kr{}

._ck7yyjn2a{}
