:root {
    --primary-blue: #1a6bb3;
    --secondary-blue: #2d8de3;
    --light-blue: #e6f2ff;
    --ice-blue: #a8d8ff;
    --snow-white: #f8fcff;
    --dark-blue: #0d4a8a;
    --text-dark: #2c3e50;
    --text-light: #5d7a9c;
    --accent-cyan: #00c9ff;
    --accent-purple: #8a2be2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--snow-white) 0%, var(--light-blue) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.5) url('img/topbg.png') center center / cover no-repeat;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ice-blue);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(26, 107, 179, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    font-size: 2.2rem;
    animation: pulse 2s infinite;
	display: inline-flex;
	align-items: center;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover::after {
    width: 70%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 107, 179, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 107, 179, 0.4);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

.hero {
    min-height: 100vh;
    background: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: snowFall 20s linear infinite;
}

@keyframes snowFall {
    0% { transform: translateY(-100px) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

.hero-content {
    max-width: 1200px;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-175px) scale(1.3);
}

.hero-play-btn {
    position: absolute;
    top: calc(50% - 135px);
    left: calc(50% - 12px);
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.4);
}

.hero-play-btn img {
    max-width: 100px;
    width: auto;
    height: auto;
}

.hero-qrcode {
    position: absolute;
    bottom: 35px;
    left: 50px;
    z-index: 3;
}

.hero-qrcode img {
    max-width: 120px;
    width: auto;
    height: auto;
}

.hero-kf-btn {
    position: absolute;
    top: 500px;
    right: 20px;
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.hero-kf-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.hero-kf-btn img {
    max-width: 80px;
    width: auto;
    height: auto;
}

.hero-ljyy-btn {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%) scale(1.3);
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.hero-ljyy-btn:hover {
    transform: translateX(-50%) scale(1.4);
}

.hero-ljyy-btn img {
    max-width: 260px;
    width: auto;
    height: auto;
}

.hero-download-btns {
    position: absolute;
    bottom: 45px;
    right: 35px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hero-download-btns button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: scale(1.3);
}

.hero-download-btns button:nth-child(1),
.hero-download-btns button:nth-child(3) {
    transform: translateX(-20px) scale(1.3);
}

.hero-download-btns button:hover {
    transform: scale(1.4);
}

.hero-download-btns button:nth-child(1):hover,
.hero-download-btns button:nth-child(3):hover {
    transform: translateX(-20px) scale(1.4);
}

.hero-download-btns img {
    max-width: 100px;
    width: auto;
    height: auto;
}

.yuyue-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.yuyue-modal.active {
    display: flex;
}

.yuyue-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(180deg, #a8e4ff 0%, #d4f1ff 50%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 60px rgba(26, 107, 179, 0.3);
    border: 2px solid rgba(168, 216, 255, 0.8);
}

.yuyue-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    color: #1a6bb3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yuyue-close-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.yuyue-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(26, 107, 179, 0.5), 0 0 30px rgba(168, 216, 255, 0.8);
    margin-bottom: 25px;
    letter-spacing: 4px;
}

.yuyue-form-group {
    margin-bottom: 18px;
}

.yuyue-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(26, 107, 179, 0.7);
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.yuyue-input-row:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 201, 255, 0.3);
}

.yuyue-prefix {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.yuyue-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
}

.yuyue-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.yuyue-code-btn {
    background: linear-gradient(135deg, #00c9ff, #2d8de3);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.yuyue-code-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.4);
}

.yuyue-platform-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.yuyue-platform-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #1a6bb3;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    color: #1a6bb3;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yuyue-platform-btn:hover,
.yuyue-platform-btn.active {
    background: linear-gradient(135deg, #00c9ff, #2d8de3);
    color: white;
    border-color: transparent;
}

.yuyue-agreement {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #1a6bb3;
    line-height: 1.5;
}

.yuyue-agreement input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #1a6bb3;
    cursor: pointer;
}

.yuyue-agreement a {
    color: #00c9ff;
    text-decoration: none;
}

.yuyue-agreement a:hover {
    text-decoration: underline;
}

.yuyue-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00c9ff, #2d8de3);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 201, 255, 0.4);
    letter-spacing: 2px;
}

.yuyue-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 201, 255, 0.5);
}

.hero-title-img {
    max-width: 95%;
    width: auto;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, white, var(--ice-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--ice-blue);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.features {
    padding: 6rem 5%;
    background: var(--snow-white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 107, 179, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 107, 179, 0.2);
    border-color: var(--ice-blue);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue));
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.screenshots {
    padding: 6rem 5%;
    background: var(--light-blue);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 74, 138, 0.9));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.rotating-showcase {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--snow-white), var(--light-blue));
    position: relative;
    overflow: hidden;
}

.rotating-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a6bb3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.rotating-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rotating-wrapper {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 107, 179, 0.15);
    background: white;
    min-height: 500px;
    position: relative;
}

.rotating-page {
    flex: 0 0 100%;
    display: none;
    padding: 3rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotating-page.active {
    display: flex;
    animation: pageAppear 0.6s ease-out;
}

@keyframes pageAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content {
    flex: 1;
    padding-right: 3rem;
}

.page-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue), var(--ice-blue));
    border-radius: 15px;
    min-height: 400px;
}

.visual-placeholder {
    text-align: center;
    color: var(--dark-blue);
}

.visual-placeholder span {
    font-size: 8rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visual-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.rotating-page h3 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotating-page p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.page-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rotating-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--ice-blue);
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(26, 107, 179, 0.1);
}

.control-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 107, 179, 0.2);
}

.page-indicators {
    display: flex;
    gap: 1rem;
}

.page-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ice-blue);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-indicator.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

.page-indicator:hover {
    background: var(--secondary-blue);
    transform: scale(1.2);
}

.auto-play-control {
    text-align: center;
    margin-top: 2rem;
}

.auto-play-btn {
    background: rgba(26, 107, 179, 0.1);
    border: 2px solid var(--ice-blue);
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.auto-play-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .rotating-page {
        flex-direction: column;
        padding: 2rem;
    }
    
    .page-content {
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    .page-visual {
        min-height: 300px;
    }
    
    .visual-placeholder span {
        font-size: 6rem;
    }
    
    .page-stats {
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .rotating-page h3 {
        font-size: 2rem;
    }
    
    .visual-placeholder span {
        font-size: 4rem;
    }
    
    .stat {
        flex: 0 0 100%;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
    }
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.platform-button {
    background: rgba(0, 0, 0, 0);
    color: var(--primary-blue);
    border: none;
    padding: 1.2rem 0rem;
    border-radius: 0px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    justify-content: center;
}

.platform-icon {
    font-size: 1.8rem;
}

.footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--ice-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b3d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-cyan);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3d4ff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        background-size: auto 100%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title-img {
        max-width: 95%;
        max-height: 55vh;
    }
    
    .hero-content {
        transform: translateY(-140px) scale(1.2);
    }
    
    .hero-play-btn img {
        max-width: 80px;
    }
    
    .hero-play-btn {
        top: calc(50% - 108px);
        left: calc(50% - 10px);
        transform: translate(-50%, -50%) scale(1.2);
    }
    
    .hero-qrcode {
        left: 30px;
        bottom: 25px;
    }
    
    .hero-qrcode img {
        max-width: 100px;
    }
    
    .hero-kf-btn {
        top: 400px;
        right: 15px;
    }
    
    .hero-kf-btn img {
        max-width: 65px;
    }
    
    .hero-ljyy-btn {
        bottom: 45px;
        transform: translateX(-50%) scale(1.2);
    }
    
    .hero-ljyy-btn img {
        max-width: 208px;
    }
    
    .hero-download-btns {
        bottom: 35px;
        right: 25px;
        gap: 8px;
    }
    
    .hero-download-btns img {
        max-width: 80px;
    }
    
    .hero-download-btns button {
        transform: scale(1.2);
    }
    
    .hero-download-btns button:nth-child(1),
    .hero-download-btns button:nth-child(3) {
        transform: translateX(-16px) scale(1.2);
    }
    
    .yuyue-container {
        padding: 30px 20px 20px;
    }
    
    .yuyue-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .yuyue-input-row {
        padding: 10px 12px;
    }
    
    .yuyue-platform-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    .yuyue-submit-btn {
        font-size: 1.1rem;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        background-size: auto 100%;
    }
    
    .hero-title-img {
        max-width: 100%;
        max-height: 45vh;
    }
    
    .hero-content {
        transform: translateY(-110px) scale(1.1);
    }
    
    .hero-play-btn img {
        max-width: 60px;
    }
    
    .hero-play-btn {
        top: calc(50% - 86px);
        left: calc(50% - 8px);
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .hero-qrcode {
        left: 20px;
        bottom: 20px;
    }
    
    .hero-qrcode img {
        max-width: 80px;
    }
    
    .hero-kf-btn {
        top: 300px;
        right: 10px;
    }
    
    .hero-kf-btn img {
        max-width: 50px;
    }
    
    .hero-ljyy-btn {
        bottom: 35px;
        transform: translateX(-50%) scale(1.1);
    }
    
    .hero-ljyy-btn img {
        max-width: 156px;
    }
    
    .hero-download-btns {
        bottom: 25px;
        right: 15px;
        gap: 6px;
    }
    
    .hero-download-btns img {
        max-width: 60px;
    }
    
    .hero-download-btns button {
        transform: scale(1.1);
    }
    
    .hero-download-btns button:nth-child(1),
    .hero-download-btns button:nth-child(3) {
        transform: translateX(-12px) scale(1.1);
    }
    
    .yuyue-container {
        padding: 25px 15px 15px;
        width: 95%;
    }
    
    .yuyue-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }
    
    .yuyue-input-row {
        padding: 10px;
        gap: 6px;
    }
    
    .yuyue-prefix {
        font-size: 0.9rem;
    }
    
    .yuyue-input {
        font-size: 0.9rem;
    }
    
    .yuyue-code-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .yuyue-platform-btn {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .yuyue-agreement {
        font-size: 0.75rem;
    }
    
    .yuyue-submit-btn {
        font-size: 1rem;
        padding: 12px;
    }
}

.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    pointer-events: none;
    z-index: 9999;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-blue);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-cyan);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.icon-survival::before { content: "❄️"; }
.icon-world::before { content: "🏔️"; }
.icon-craft::before { content: "⚙️"; }
.icon-multiplayer::before { content: "👥"; }

.icon-apple::before { content: "🍎"; }
.icon-android::before { content: "🤖"; }
.icon-pc::before { content: "💻"; }
.icon-console::before { content: "🎮"; }

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 201, 255, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.close-video-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-video-btn:hover {
    background: var(--accent-cyan);
    transform: scale(1.1);
}

.video-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
