/*
 * Bonus / Register Page Styles
 * Uses homepage design system for consistent CTA/UI
 */

/* ===== Hero Offer Box ===== */

.bonus-hero__offer-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 18px 32px;
    border: 1px solid rgba(191, 149, 63, 0.25);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(191, 149, 63, 0.08), rgba(255, 215, 0, 0.03));
    box-shadow: 0 0 30px rgba(191, 149, 63, 0.08);
}

.bonus-hero__offer-value {
    color: var(--mw-gold, #D4AF37);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* ===== Bonus Tiers Grid ===== */

.bonus-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bonus-tier__popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 16px;
    border-radius: 999px;
    background: #D4AF37;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.bonus-tier--highlight {
    position: relative;
    border-color: rgba(212, 175, 55, 0.6) !important;
    background: rgba(10, 10, 18, 0.8) !important;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    transform: scale(1.04);
    z-index: 2;
}

.bonus-tier__badge {
    display: inline-flex;
    align-self: center;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bonus-tier__value {
    color: var(--mw-gold, #D4AF37);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.bonus-tier__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.bonus-tier__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
    line-height: 1.5;
}

.bonus-tier__list li::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--mw-gold, #D4AF37);
    font-weight: 700;
}

/* Bonus tiers use mw-home-card, override card layout for tier content */
.bonus-tiers-grid .mw-home-card {
    gap: 14px;
    text-align: center;
    align-items: center;
    padding: 32px 24px 28px;
}

.bonus-tiers-grid .mw-home-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.bonus-tiers-grid .mw-home-card p {
    margin: 0;
    font-size: 0.9rem;
}

.bonus-tiers-grid .mw-home-card .mw-home-btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.82rem;
    width: 100%;
    margin-top: auto;
}

/* ===== Final CTA footnote ===== */

.mw-home-final-cta p:last-child {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

/* ===== Bonus Hero CTA Buttons ===== */

.bonus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 50px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bonus-btn--primary {
    background: #D4AF37;
    color: #0A0A12;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 15px rgba(245, 215, 110, 0.2), 0 8px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #1A1630;
}

.bonus-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7), 0 0 25px rgba(245, 215, 110, 0.3), 0 12px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
    color: #0A0A12;
}

.bonus-btn--secondary {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 8px 15px rgba(0, 0, 0, 0.3);
}

.bonus-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3), 0 12px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {
    .bonus-tiers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bonus-tier--highlight {
        transform: none;
    }
}

@media (max-width: 767px) {
    .bonus-tiers-grid {
        grid-template-columns: 1fr;
    }

    .bonus-hero__offer-box {
        padding: 14px 20px;
    }

    .bonus-tiers-grid .mw-home-card {
        padding: 24px 18px 22px;
    }

    .bonus-tier--highlight {
        transform: none;
    }
}
