/* ====================================
   CTA PAGE - FACEFAME DARK THEME
   ==================================== */

:root {
    --primary-gold: #ffd700;
    --primary-orange: #ffa500;
    --bg-primary: #050505;
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --success-green: #4ade80;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ====================================
   CTA WRAPPER
   ==================================== */

.cta-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--bg-primary);
    background-image:
        radial-gradient(at 20% 30%, rgba(255, 215, 0, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255, 165, 0, 0.05) 0px, transparent 50%);
}

.cta-container {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    animation: slideUp 0.5s ease;
    justify-self: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   LOCK ICON
   ==================================== */

.lock-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
    }
}

.lock-icon svg {
    width: 50px;
    height: 50px;
    stroke: black;
    stroke-width: 2;
}

/* ====================================
   CONTENT
   ==================================== */

.cta-title {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================
   BUTTONS
   ==================================== */

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: black;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ====================================
   FEATURES
   ==================================== */

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-gold);
}

.feature span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ====================================
   BACK LINK
   ==================================== */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.back-link:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 640px) {
    .cta-container {
        padding: 2.5rem 1.75rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .lock-icon {
        width: 80px;
        height: 80px;
    }

    .lock-icon svg {
        width: 40px;
        height: 40px;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .cta-wrapper {
        padding: 1rem 0.5rem;
    }

    .cta-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.625rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .cta-features {
        padding: 1.5rem 0;
    }
}

/* ====================================
   LOADING STATE (optional)
   ==================================== */

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

.btn:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}

.back-link:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}