/* File: /app_deploy/pro/fullscreen.css */

/* Reset body for full-screen */
body {
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
    /* background will be set on container to ensure coverage */
}

:root {
    --cc-cream: rgba(245, 240, 230, 0.96);
    --cc-cream-soft: rgba(245, 240, 230, 0.74);
    --cc-cream-muted: rgba(245, 240, 230, 0.55);
    --cc-border-cream: rgba(245, 240, 230, 0.14);
    --cc-bg-0: #05020a;
    --cc-bg-1: #12071b;
    --cc-bg-2: #1b0b2a;
    --cc-purple-0: #5b2b88;
    --cc-purple-1: #3b1d5a;
}

/* Main container - full screen */
.pro-fullscreen-container {
    min-height: 100vh;
    width: 100%;
    background:
        radial-gradient(1200px 700px at 18% 18%, rgba(91, 43, 136, 0.38), rgba(0, 0, 0, 0) 60%),
        radial-gradient(900px 520px at 80% 22%, rgba(59, 29, 90, 0.28), rgba(0, 0, 0, 0) 58%),
        linear-gradient(135deg, var(--cc-bg-0) 0%, var(--cc-bg-1) 35%, var(--cc-bg-2) 100%);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
.pro-header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}

.pro-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--cc-cream);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.pro-logo-icon {
    background: rgba(245, 240, 230, 0.95);
    color: var(--cc-bg-2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.close-button {
    background: rgba(245, 240, 230, 0.06);
    border: 1px solid rgba(245, 240, 230, 0.16);
    color: var(--cc-cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    /* Ensure link behaves like button */
    line-height: 1;
}

.close-button:hover {
    background: rgba(245, 240, 230, 0.12);
    transform: scale(1.1);
    border-color: rgba(245, 240, 230, 0.28);
}

/* Main Content Area - Center Everything */
.pro-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Start from top, allow scrolling */
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Hero Section */
.pro-hero {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    animation: fadeInDown 0.6s ease-out;
}

.pro-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--cc-cream);
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pro-hero p {
    font-size: 20px;
    color: var(--cc-cream-soft);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Steps Progress Visualization (Static Header) */
.pro-steps-vis {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 240, 230, 0.05);
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    border: 1px solid var(--cc-border-cream);
    animation: fadeIn 0.8s ease-out;
}

.pro-steps-text h2 {
    color: var(--cc-cream);
    font-size: 24px;
    margin: 0 0 5px 0;
}

.pro-steps-text p {
    color: rgba(245, 240, 230, 0.66);
    margin: 0;
    font-size: 15px;
}

/* Dynamic Step Container - where the JS injects content */
.pro-dynamic-step-container {
    width: 100%;
    max-width: 500px;
    /* Default width for Auth/Verify */
    animation: fadeInUp 0.5s ease-out;
}

/* Widen container for Plans */
.pro-dynamic-step-container.wide-mode {
    max-width: 1000px;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.pro-footer {
    text-align: center;
    padding: 30px;
    color: var(--cc-cream-muted);
    font-size: 13px;
    border-top: 1px solid rgba(245, 240, 230, 0.10);
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pro-header {
        padding: 15px 20px;
    }

    .pro-hero h1 {
        font-size: 32px;
    }

    .pro-hero p {
        font-size: 16px;
    }

    .pro-steps-vis {
        display: none;
        /* Hide complex viz on mobile to save space */
    }

    .pro-content-wrapper {
        padding: 20px 15px;
    }
}