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

:root {--primary-color: #1a5f1a;--accent-color: #3d6b3d;--gold: #8bc34a;--secondary-color: #2d5016;--text-light: #666;--bg-light: #f0f5f0;--transition: all 0.3s ease;--shadow: rgba(0, 0, 0, 0.1);--bg-dark: #0d1f0d;--text-dark: #1a1a1a;--white: #ffffff}

html {scroll-behavior: smooth}

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

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

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

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

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

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

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

.logo-text-img {height: 35px;object-fit: contain;transition: var(--transition);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 {gap: 2rem;list-style: none;display: flex}

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

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

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

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

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

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

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

.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 {animation-delay: 1s;top: 20%;right: 15%}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-primary:hover {box-shadow: 0 10px 25px rgba(74, 124, 74, 0.4);transform: translateY(-3px);background: #4a7c4a}

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

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

.btn-download-apple:hover {box-shadow: 0 10px 25px rgba(13, 31, 13, 0.4);background: #1a3d1a;transform: translateY(-3px)}

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

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

.btn-download-android:hover {transform: translateY(-3px);background: #6bac6b;box-shadow: 0 10px 25px rgba(90, 156, 90, 0.4)}

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

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

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

.phone-frame {transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);border-radius: 30px;background-clip: padding-box, border-box;background-origin: border-box;box-shadow: 
        0 0 30px rgba(26, 35, 126, 0.3),
        0 0 60px rgba(57, 73, 171, 0.2),
        inset 0 0 30px rgba(26, 35, 126, 0.1);height: 580px;padding: 8px;background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(57, 73, 171, 0.6));border: 3px solid transparent;width: 280px;transition: var(--transition);background: transparent;position: relative}

.phone-frame::before {z-index: -1;border-radius: 30px;top: -3px;background: linear-gradient(135deg, 
        rgba(74, 124, 74, 0.6),
        rgba(26, 95, 26, 0.8),
        rgba(61, 107, 61, 0.6),
        rgba(74, 124, 74, 0.6));right: -3px;position: absolute;opacity: 0.8;bottom: -3px;left: -3px;animation: borderGlow 3s ease-in-out infinite;content: ''}

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

.phone-frame:hover {transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.02);box-shadow: 
        0 0 50px rgba(26, 35, 126, 0.5),
        0 0 100px rgba(57, 73, 171, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(26, 35, 126, 0.15)}

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

@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 {position: relative;height: 100%;background: #000;overflow: hidden;width: 100%;box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(74, 124, 74, 0.1);border-radius: 25px}

.app-screenshot {display: block;height: 100%;object-fit: cover;width: 100%;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 {color: var(--gold);margin-bottom: 0.5rem;font-weight: bold;font-size: 2.5rem}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.game-card:hover {box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);transform: translateY(-10px)}

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

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

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

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

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

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

.btn-game:hover {transform: translateY(-3px);box-shadow: 0 5px 15px rgba(74, 124, 74, 0.4);background: #4a7c4a}

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

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

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

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

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

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

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

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

.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;justify-content: center;align-items: center}

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

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

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

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

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

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

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

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

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

.article-meta span {align-items: center;display: flex;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;margin-bottom: 2.5rem;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);overflow: hidden}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.app-screenshot-frame::before {right: 0;z-index: 1;bottom: 0;content: '';opacity: 0;background: linear-gradient(135deg, rgba(74, 124, 74, 0.1), rgba(74, 124, 74, 0.05));position: absolute;left: 0;top: 0;pointer-events: none;transition: var(--transition)}

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

.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;display: grid;margin-top: 3rem}

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

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

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

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

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

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

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

.form-group input,
.form-group textarea {border: 2px solid #e0e0e0;border-radius: 10px;font-size: 1rem;padding: 1rem;width: 100%;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 {gap: 2rem;margin-bottom: 2rem;display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .btn-download {font-size: 0.9rem;padding: 0.9rem 1rem}

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

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

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

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

    .article {padding: 3rem 0}

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

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

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

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

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

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

    .feature-card {padding: 1.2rem 0.8rem}

    .feature-icon {width: 50px;font-size: 1.2rem;height: 50px}

    .feature-card h3 {font-size: 0.9rem}

    .feature-card p {font-size: 0.8rem}

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

    .game-image {height: 120px}

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

    .game-content {padding: 1.2rem}

    .game-content h3 {font-size: 1.1rem;margin-bottom: 0.6rem}

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

    .btn-game {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 {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;width: 120px;padding: 8px}

    .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 {width: 45px;margin-bottom: 0.8rem;height: 45px;font-size: 1rem}

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

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

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

    .download-buttons {grid-template-columns: 1fr;gap: 0.8rem}

    .btn-download {padding: 0.85rem 1rem;justify-content: center;font-size: 0.85rem}

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

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

    .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 {flex-direction: column;gap: 0.5rem;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 {font-size: 1.2rem;margin: 1.5rem 0 0.6rem}

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

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

._cekcb5pgy{}

._cah2xza8n{}
