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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE5E5 100%);
    min-height: 100vh;
    padding: 20px;
}

/* 语言选择器样式 */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.language-selector select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    background: white;
}

.language-selector select:hover {
    border-color: #FF69B4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 40px);
}

/* 欢迎区域 */
.welcome-section {
    text-align: center;
    margin: 60px 0;
}

.emoji {
    font-size: 80px;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 36px;
    font-weight: bold;
    color: #FF69B4;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #999;
}

/* 游戏卡片 */
.game-cards {
    width: 100%;
    max-width: 600px;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.25);
}

.game-card:active {
    transform: scale(0.98);
}

.game-icon {
    font-size: 60px;
}

.game-info {
    flex: 1;
    margin-left: 20px;
    margin-right: 15px;
}

.game-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.game-desc {
    font-size: 16px;
    color: #999;
}

.arrow {
    font-size: 40px;
    color: #FF69B4;
    font-weight: bold;
}

/* 更多游戏待添加 */
.coming-soon {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 105, 180, 0.05);
    border-radius: 15px;
    border: 2px dashed #FFB6C1;
    max-width: 600px;
}

.more-text {
    font-size: 16px;
    color: #FF69B4;
}

/* 返回按钮区域 */
.back-area {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.back-btn {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* 底部提示 */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
}

.footer-text {
    font-size: 14px;
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 28px;
    }

    .game-icon {
        font-size: 50px;
    }

    .game-title {
        font-size: 24px;
    }

    .game-desc {
        font-size: 14px;
    }

    .game-card {
        padding: 20px;
    }
}