/* ============================================
   Base Styles - 基础样式
   ============================================ */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* ============================================
   Iframe Styles - iframe 样式
   ============================================ */
iframe {
    border: none;
    width: 100vw;
    height: 100vh;
    transform: translate3d(0, 0, 0);
}

/* ============================================
   Review Page Styles - 审核页面样式
   ============================================ */
.review-page {
    display: none;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 40px 20px;
    box-sizing: border-box;
}

.review-page.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.review-content {
    max-width: 600px;
    width: 100%;
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.review-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.review-page p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============================================
   Feature Cards - 特性卡片样式
   ============================================ */
.review-page .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.feature-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

