/* Welcome Choose Premium Path — Page-specific styles */
/* Inherits: landing.css variables, background media, fonts */

.welcome-choose-premium-path-page-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    padding-top: 2rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== Sign-In Banner (shown when user is NOT logged in) ===== */
.welcome-choose-premium-path-sign-in-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.welcome-choose-premium-path-sign-in-banner a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}

.welcome-choose-premium-path-sign-in-banner a:hover {
    text-decoration: underline;
}

.welcome-choose-premium-path-sign-in-banner-dismiss-button {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 0.25rem;
    line-height: 1;
    margin-left: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.welcome-choose-premium-path-sign-in-banner-dismiss-button:hover {
    opacity: 1;
}

/* When banner is visible, push content down */
body.welcome-choose-premium-path-banner-visible .welcome-choose-premium-path-page-container {
    padding-top: 4rem;
}

/* ===== Language Switcher ===== */
.welcome-choose-premium-path-language-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
    width: 100%;
    margin-bottom: 1rem;
}

/* ===== Welcome Header ===== */
.welcome-choose-premium-path-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem 1rem 0;
}

.welcome-choose-premium-path-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.welcome-choose-premium-path-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ===== Two Path Cards Grid ===== */
.welcome-choose-premium-path-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .welcome-choose-premium-path-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Path 1: Trade Free Card (slightly more prominent) ===== */
.welcome-choose-premium-path-trade-free-card {
    background: rgba(39, 39, 42, 0.35);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.welcome-choose-premium-path-trade-free-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), rgba(0, 212, 255, 0.3));
}

.welcome-choose-premium-path-trade-free-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.welcome-choose-premium-path-recommended-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    background: rgba(0, 212, 255, 0.12);
    color: var(--brand);
    border: 1px solid rgba(0, 212, 255, 0.25);
}

.welcome-choose-premium-path-card-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fafafa;
    margin: 0 0 0.75rem;
}

.welcome-choose-premium-path-card-body-text {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

/* ===== Numbered Steps ===== */
.welcome-choose-premium-path-numbered-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.welcome-choose-premium-path-numbered-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.welcome-choose-premium-path-numbered-step-item:last-child {
    margin-bottom: 0;
}

.welcome-choose-premium-path-step-number-circle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--brand);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-choose-premium-path-step-text {
    padding-top: 0.2rem;
}

/* ===== Exchange Buttons ===== */
.welcome-choose-premium-path-exchange-buttons-row {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.welcome-choose-premium-path-exchange-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.welcome-choose-premium-path-exchange-button:active {
    transform: scale(0.98);
}

.welcome-choose-premium-path-open-mexc-account-button {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.welcome-choose-premium-path-open-mexc-account-button:hover {
    background: rgba(34, 197, 94, 0.25);
}

.welcome-choose-premium-path-open-bingx-account-button {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.welcome-choose-premium-path-open-bingx-account-button:hover {
    background: rgba(59, 130, 246, 0.25);
}

.welcome-choose-premium-path-exchange-button svg {
    flex-shrink: 0;
}

/* ===== Path 2: VIP Club Card ===== */
.welcome-choose-premium-path-vip-club-card {
    background: rgba(39, 39, 42, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.welcome-choose-premium-path-vip-club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, rgba(245, 158, 11, 0.3));
}

.welcome-choose-premium-path-vip-club-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.06);
}

.welcome-choose-premium-path-vip-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.welcome-choose-premium-path-vip-club-price-display {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    margin: 0 0 0.25rem;
}

.welcome-choose-premium-path-vip-club-price-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted-foreground);
}

.welcome-choose-premium-path-vip-club-features-text {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.welcome-choose-premium-path-vip-club-payment-methods-text {
    font-size: 0.8rem;
    color: #71717a;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.welcome-choose-premium-path-subscribe-via-tribute-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    margin-top: auto;
}

.welcome-choose-premium-path-subscribe-via-tribute-button:hover {
    opacity: 0.9;
}

.welcome-choose-premium-path-subscribe-via-tribute-button:active {
    transform: scale(0.98);
}

/* ===== Already Trading Section ===== */
.welcome-choose-premium-path-already-trading-section {
    background: rgba(39, 39, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-choose-premium-path-already-trading-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.welcome-choose-premium-path-already-trading-profile-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.welcome-choose-premium-path-already-trading-profile-link:hover {
    text-decoration: underline;
}

/* ===== Footer ===== */
.welcome-choose-premium-path-footer {
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    margin-top: auto;
}

.welcome-choose-premium-path-footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.welcome-choose-premium-path-footer-link {
    color: #71717a;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.15s;
}

.welcome-choose-premium-path-footer-link:hover {
    color: var(--muted-foreground);
}

.welcome-choose-premium-path-footer-separator {
    color: #3f3f46;
    font-size: 0.8rem;
}

.welcome-choose-premium-path-footer-copyright {
    font-size: 0.7rem;
    color: #52525b;
    margin-top: 0.75rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 480px) {
    .welcome-choose-premium-path-exchange-buttons-row {
        flex-direction: column;
    }

    .welcome-choose-premium-path-trade-free-card,
    .welcome-choose-premium-path-vip-club-card {
        padding: 1.5rem 1.25rem;
    }

    .welcome-choose-premium-path-page-container {
        padding: 0.75rem;
        padding-top: 1.5rem;
    }

    .welcome-choose-premium-path-header {
        padding: 1.5rem 0.5rem 0;
    }
}
