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

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

html {scroll-behavior: smooth}

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

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

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

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

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

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

.logo-img {object-fit: contain;height: 40px;width: auto;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 {list-style: none;gap: 2rem;display: flex}

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

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

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

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

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

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

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

.cards-animation {height: 100%;position: absolute;width: 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 {animation-delay: 0s;top: 10%;left: 10%}

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

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

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

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

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

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

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

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

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

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

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

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

.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 {gap: 0.5rem;display: flex;justify-content: center;box-sizing: border-box;align-items: center;transition: var(--transition);font-weight: 600;padding: 1rem 2rem;border-radius: 12px;font-size: 0.85rem;width: 180px;cursor: pointer;height: 50px;border: none}

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

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

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

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

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

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

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

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

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

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

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

.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% {filter: blur(8px);opacity: 1}
}

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

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

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

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

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

.stat-item {text-align: center}

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

.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;margin-bottom: 1rem;color: var(--primary-color);text-align: center}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-download span {flex: 1}

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

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

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

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

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

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

/* ===== 文章正文板块 ===== */
.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 {color: var(--text-dark);font-size: 2.5rem;line-height: 1.3;font-weight: bold;margin-bottom: 1.5rem}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-group textarea {resize: vertical}

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

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

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

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

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

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

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

.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 {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 {gap: 1rem;display: flex}

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

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

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

    .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 {text-align: center;gap: 2rem;grid-template-columns: 1fr}

    .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 {gap: 0.8rem;align-items: center;flex-direction: row;justify-content: center;flex-wrap: wrap}

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

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

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

    .hero-app {order: -1}

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

    .phone-frame::before {top: 12px;height: 4px;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 {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 {width: 180px;height: 360px;padding: 8px;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 {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 {gap: 0.6rem;padding-top: 1.5rem;margin-top: 2rem}

    .article-tags .tag {padding: 0.4rem 0.8rem;font-size: 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 {font-size: 1.2rem;height: 50px;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 {font-size: 0.85rem;margin-bottom: 0.8rem}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .article {padding: 2.5rem 0}

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

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

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

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

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

._cff15dott{}

._c9k222llf{}
