/* css/cta.css */
/* 游戏结果页 - CTA 统一样式 */

.cta-section {
    margin: 24px 0 16px;
    padding: 20px 16px;
    background: #f8f4ee;
    border-radius: 24px;
    border: 1px solid #e8dcc8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: 100%;
    box-sizing: border-box;
}

.cta-divider {
    text-align: center;
    color: #c4b49a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    user-select: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.cta-icon {
    font-size: 32px;
    line-height: 1.2;
}

.cta-text {
    text-align: center;
    color: #5a4a38;
    width: 100%;
}

.cta-text strong {
    font-size: 18px;
    display: block;
    color: #3b2a1f;
    margin-bottom: 4px;
}

.cta-text span {
    font-size: 14px;
    color: #8b7355;
    display: block;
}

.cta-features {
    list-style: none;
    margin: 8px auto;
    padding: 0;
    font-size: 13px;
    color: #5a4a38;
    text-align: left;
    display: inline-block;
}

.cta-features li {
    padding: 3px 0;
    white-space: nowrap;
}

.cta-btn {
    border: none;
    border-radius: 60px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    min-width: 180px;
    transition: all 0.2s ease;
    touch-action: manipulation;
}

.cta-btn:active {
    transform: scale(0.97);
}

.cta-btn-login {
    background: #4EB3B3;
    color: white;
}

.cta-btn-login:hover {
    background: #3d9a9a;
}

.cta-btn-unlock {
    background: #f7d774;
    color: #1a0a2e;
}

.cta-btn-unlock:hover {
    background: #f0cc5a;
}

.cta-btn-share {
    background: #e8d5c4;
    color: #3b2a1f;
}

.cta-btn-share:hover {
    background: #ddc8b4;
}

.cta-btn-pdf {
    background: #d0d0c8;
    color: #3b2a1f;
}

.cta-btn-pdf:hover {
    background: #c2c2b8;
}

.cta-skip {
    font-size: 12px;
    color: #b8a088;
    margin-top: 4px;
}

.cta-skip a {
    color: #b8a088;
    text-decoration: none;
    border-bottom: 1px dashed #d5c8b8;
    cursor: pointer;
}

.cta-skip a:hover {
    color: #a08870;
}

/* ===== 响应式适配 ===== */
@media (max-width: 480px) {
    .cta-section {
        margin: 16px 0 12px;
        padding: 16px 12px;
        border-radius: 18px;
    }

    .cta-text strong {
        font-size: 16px;
    }

    .cta-text span {
        font-size: 13px;
    }

    .cta-btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 260px;
    }

    .cta-content {
        gap: 10px;
    }

    .cta-divider {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .cta-features li {
        font-size: 12px;
        white-space: normal;
    }

    .cta-icon {
        font-size: 28px;
    }

    /* 状态C的按钮组 */
    .cta-content > div[style*="display:flex"] {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }

    .cta-content > div[style*="display:flex"] .cta-btn {
        max-width: 240px;
    }
}

/* 极小屏幕 */
@media (max-width: 360px) {
    .cta-section {
        padding: 12px 10px;
    }

    .cta-btn {
        min-width: 100px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .cta-text strong {
        font-size: 14px;
    }
}