/* 全局样式 */
:root {
    --primary-color: #00A7E5; /* 蓝色，与logo匹配 */
    --primary-dark: #0089BD;
    --primary-light: #33B8EA;
    --secondary-color: #2A2A2A;
    --text-color: #FFFFFF;
    --bg-color: #121212;
    --light-gray: #F5F7FA;
    --mid-gray: #E0E5EC;
    --dark-gray: #888888;
    --accent-color: #FFB800;
    --success-color: #22C55E;
    --font-sans: 'Noto Sans SC', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 167, 229, 0.6);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 6rem 0;
}

/* 按钮样式 */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.button.primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button.secondary {
    background: var(--light-gray);
    color: var(--secondary-color);
    border: 1px solid var(--mid-gray);
}

.button.secondary:hover {
    background: var(--mid-gray);
    transform: translateY(-2px);
}

.button.platform {
    padding: 16px 28px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    color: var(--secondary-color);
    margin: 0 10px;
    font-weight: 600;
}

.button.platform:hover {
    background: var(--mid-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.button.platform .icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 头部导航 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
    /* SVG特定优化 */
    display: block;
    max-width: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

/* 粒子背景 */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* 主容器 */
.coming-soon-container {
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

/* Logo样式 */
.logo-container {
    margin-bottom: 2rem;
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    /* 添加微妙的内发光 */
    box-shadow: inset 0 0 20px rgba(0, 167, 229, 0.2);
}

.logo {
    max-width: 90%; /* 稍微缩小一点，让发光效果更明显 */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 167, 229, 0.6));
    animation: pulse 3s infinite ease-in-out;
    /* 确保背景透明 */
    background: transparent;
    /* 尝试不同的混合模式 */
    mix-blend-mode: lighten; /* 这对蓝色标志在深色背景上通常效果很好 */
    transform-origin: center;
    z-index: 2;
}

/* 在logo周围添加发光效果 */
.logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(0, 167, 229, 0.2) 0%, rgba(0, 167, 229, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 4s infinite alternate ease-in-out;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 167, 229, 0.6));
    }
    50% {
        transform: scale(1.03); /* 减小缩放幅度，使效果更微妙 */
        filter: drop-shadow(0 0 25px rgba(0, 167, 229, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 167, 229, 0.6));
    }
}

/* 标题样式 */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    animation: titleGlow 3s infinite alternate ease-in-out;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.title span {
    display: block;
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 167, 229, 0.8), 0 0 30px rgba(0, 167, 229, 0.4);
    letter-spacing: 4px;
    font-weight: 800;
    background: linear-gradient(to right, #00A7E5, #33B8EA, #00A7E5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: blueGlow 3s infinite alternate ease-in-out;
}

@keyframes blueGlow {
    0% {
        text-shadow: 0 0 15px rgba(0, 167, 229, 0.7);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 167, 229, 0.9), 0 0 40px rgba(0, 167, 229, 0.5);
    }
}

/* 倒计时样式 */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 1rem; /* 增加与标题的间距 */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.3); /* 稍微加深背景 */
    border-radius: 12px; /* 增加圆角 */
    padding: 1rem;
    min-width: 100px;
    text-shadow: 0 0 15px rgba(0, 167, 229, 0.7);
    box-shadow: 0 0 15px rgba(0, 167, 229, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 167, 229, 0.2); /* 添加微妙的边框 */
    transition: all 0.3s ease;
}

.countdown-value:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 167, 229, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 1rem;
    margin-top: 0.8rem; /* 增加与数字的间距 */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8); /* 提高标签对比度 */
    text-shadow: 0 0 10px rgba(0, 167, 229, 0.4); /* 添加微妙的发光效果 */
}

/* 订阅表单样式 */
.subscribe-container {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
}

.subscribe-text {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.subscribe-form {
    display: flex;
    width: 100%;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 4px 0 0 4px;
    outline: none;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background: var(--primary-dark);
}

/* 社交链接样式 */
.social-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    font-size: 1rem;
    padding: 0.5rem;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover::after {
    width: 100%;
}

/* 版权信息 */
.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .title span {
        font-size: 2.5rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .subscribe-form button {
        border-radius: 4px;
    }
    
    /* 调整语言切换按钮在移动设备上的位置 */
    .language-switch {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        width: calc(50% - 1rem);
    }
}

/* 渐入动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container, .title, .countdown-container, .subscribe-container, .social-container {
    animation: fadeIn 1s ease-out forwards;
}

.title {
    animation-delay: 0.2s;
}

.countdown-container {
    animation-delay: 0.4s;
}

.subscribe-container {
    animation-delay: 0.6s;
}

.social-container {
    animation-delay: 0.8s;
}

/* 英雄区域 */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-element-1, .bg-element-2, .bg-element-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bg-element-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-light);
}

.bg-element-2 {
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
}

.bg-element-3 {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
}

/* 特色功能 */
.features {
    background-color: var(--light-gray);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* 游戏展示 */
.game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-card h3, .game-card p {
    padding: 0 1.5rem;
}

.game-card h3 {
    margin-top: 1.5rem;
}

.game-card a {
    margin: 1rem 1.5rem 1.5rem;
    display: inline-block;
}

/* 社区部分 */
.community {
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), var(--light-gray));
}

.subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.avatars-grid {
    height: 150px;
    margin: 0 auto 3rem;
    position: relative;
    max-width: 800px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 下载CTA */
.download-cta {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.download-cta h2, .download-cta p {
    color: white;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* 新闻部分 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--bg-color);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-content .date {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.news-content h3 {
    margin: 0.5rem 0;
}

.more-news {
    text-align: center;
}

/* 页脚 */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--mid-gray);
}

.footer-col ul li a:hover {
    color: white;
}

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

.social-links a {
    color: var(--mid-gray);
    margin-right: 1rem;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.footer-links a {
    color: var(--mid-gray);
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: white;
}

/* 响应式布局 */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav {
        display: none; /* 移动端导航需要JS来实现 */
    }
    
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .button.platform {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity:.0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .game-card, .news-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.hero-content {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2),
.game-card:nth-child(2),
.news-card:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3),
.game-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.5s;
}

/* 语言切换样式 */
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 167, 229, 0.3);
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 167, 229, 0.5);
}

.lang-btn.active {
    background: rgba(0, 167, 229, 0.2);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 167, 229, 0.4);
}

/* 发布信息样式 */
.launch-message {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 167, 229, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px rgba(0, 167, 229, 0.3);
    border: 1px solid rgba(0, 167, 229, 0.3);
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
}

.launch-message h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 167, 229, 0.7);
}

.launch-message p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.launch-message .button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.launch-message .button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 删除针对内联SVG的特定样式
.logo svg {
    width: 100%;
    height: 100%;
}

.logo text {
    font-family: var(--font-sans);
    paint-order: stroke;
    stroke: rgba(0, 0, 0, 0.5);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
*/ 