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

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

html {scroll-behavior: smooth}

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

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

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

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

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

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

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

.logo-text-img {object-fit: contain;width: auto;height: 35px;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 {color: var(--white);position: relative;transition: var(--transition);font-weight: 500;text-decoration: none}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {justify-content: flex-start;gap: 1rem;animation: fadeInUp 1s ease 0.4s backwards;margin-bottom: 3rem;display: flex}

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

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

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

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

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

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

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

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

.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;margin-top: 3rem;animation: fadeInUp 1s ease 0.6s backwards;gap: 3rem;justify-content: flex-start}

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

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

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

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

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

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

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

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

.stat-item {text-align: center}

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

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

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

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

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

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

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

.feature-card {background: var(--white);flex-direction: column;padding: 1.5rem 1rem;border-radius: 15px;box-shadow: 0 5px 20px var(--shadow);justify-content: center;align-items: center;transition: var(--transition);display: flex;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;margin: 0 auto 1rem;flex-shrink: 0;height: 60px;background: linear-gradient(135deg, var(--primary-color), var(--accent-color));color: var(--white);display: flex;width: 60px;justify-content: center;font-size: 1.5rem;border-radius: 50%}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== 下载区域 ===== */
.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 {margin-bottom: 1rem;font-size: 2.5rem;font-weight: bold}

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

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

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

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

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

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

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

.btn-download span {flex: 1}

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

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

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

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

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

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

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

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

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

.article-meta {gap: 2rem;color: var(--text-light);flex-wrap: wrap;font-size: 0.95rem;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 {max-width: 900px;margin: 0 auto}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {max-width: 180px;min-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 {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;margin-top: 0;max-width: 220px;flex: 0 0 auto;min-width: 220px;margin-bottom: 0}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-group input,
.form-group textarea {font-size: 1rem;border: 2px solid #e0e0e0;width: 100%;border-radius: 10px;padding: 1rem;transition: var(--transition);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);padding: 3rem 0 1rem;background: var(--bg-dark)}

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

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

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

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

.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;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 {opacity: 0.8;transition: var(--transition);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 {border-radius: 50%;color: var(--white);font-size: 1.2rem;display: flex;background: rgba(255, 255, 255, 0.1);height: 40px;transition: var(--transition);justify-content: center;width: 40px;align-items: center}

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

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

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {padding: 2rem 0;text-align: center;background-color: var(--secondary-color);box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);top: 70px;.nav-menu {
        position: fixed;flex-direction: column;width: 100%;transition: 0.3s;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 {line-height: 1.7;font-size: 0.9rem}

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

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

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

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

    .phone-mockup {padding: 8px;width: 180px;height: 360px;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 {font-size: 1.8rem;margin-bottom: 1rem}

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

    .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 {margin: 2rem 0 0.8rem;font-size: 1.3rem}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._cr6j41z1j{}

._c36wrakev{}
