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

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

html {scroll-behavior: smooth}

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

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

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

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

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

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

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

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

.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;list-style: none;gap: 2rem}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {background: #0ea5e9;color: var(--white)}

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

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

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

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

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

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

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

.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%;box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(125, 211, 252, 0.15);background: #000;width: 100%;position: relative;border-radius: 25px;overflow: hidden}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.game-card {overflow: hidden;display: flex;border-radius: 20px;background: linear-gradient(135deg, var(--primary-color), var(--accent-color));box-shadow: 0 10px 30px var(--shadow);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);align-items: center;justify-content: center;display: flex;flex-shrink: 0;height: 150px}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-download span {flex: 1}

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

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

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

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

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

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

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

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

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

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

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

.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 {height: auto;display: block;transition: transform 0.3s ease;width: 100%}

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

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

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

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

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

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

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

.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 {margin-bottom: 3rem;text-align: center}

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

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

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

@media (max-width: 480px) {max-width: 160px;.app-screenshot-item {
        width: 160px;min-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 {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 {width: 220px;min-width: 220px;margin-top: 0;flex: 0 0 auto;max-width: 220px;margin-bottom: 0}

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

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

.app-screenshot-frame::before {z-index: 1;position: absolute;top: 0;left: 0;content: '';pointer-events: none;opacity: 0;background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(125, 211, 252, 0.08));transition: var(--transition);right: 0;bottom: 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%;object-fit: cover;width: 100%;display: block;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 {margin-top: 3rem;grid-template-columns: 1fr 1fr;gap: 3rem;display: grid}

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

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

.contact-icon {height: 50px;justify-content: center;background: linear-gradient(135deg, var(--primary-color), var(--accent-color));color: var(--white);display: flex;border-radius: 50%;font-size: 1.5rem;width: 50px;flex-shrink: 0;align-items: 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 {padding: 1rem;border-radius: 10px;width: 100%;transition: var(--transition);font-size: 1rem;border: 2px solid #e0e0e0;font-family: inherit}

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

.form-group textarea {resize: vertical}

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

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

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

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

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

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

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

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

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

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

    .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;text-align: center;gap: 2rem}

    .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;flex-wrap: wrap;flex-direction: row;justify-content: center}

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

    .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 {width: 150px;transform: perspective(1000px) rotateY(0deg) rotateX(0deg);padding: 10px;height: 315px}

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

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

    .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 {gap: 0.6rem;padding-top: 1.5rem;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 {gap: 1rem;grid-template-columns: repeat(2, 1fr)}

    .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 {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;height: 46px;width: 140px;font-size: 0.75rem}

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

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

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

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

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

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

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

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

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

    .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 {margin-bottom: 0.5rem;font-size: 1rem}

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

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

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

    .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 {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 {padding: 0.35rem 0.7rem;font-size: 0.75rem}

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

._cbxcif7rj{}

._cxu8iw16o{}
