/* Coming Soon Specific Styles */

body {
    background-color: #050505;
    overflow: hidden;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

#reactor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.coming-soon-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.logo-area {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: clamp(2px, 1vw, 8px);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em;
}

.logo-part {
    display: inline-flex;
    align-items: baseline;
    overflow: hidden;
    /* For reveal animation */
}

.logo-capital {
    display: inline-block;
}

.logo-rest {
    display: inline-block;
}

.logo-spacer {
    display: inline-block;
    width: 0.2em;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-family: 'Fira Code', monospace;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 2px;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.05);
    }
}

.content-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border-radius: 20px;
    max-width: 600px;
    width: 95%;
    /* Responsive width */
    margin: 0 auto 2rem auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transform: translateY(20px);
    opacity: 0;
    animation: card-appear 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes card-appear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-heading {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    padding: 0 10px;
}

.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    box-shadow: 0 0 10px var(--gold);
    border-radius: 4px;
    animation: progress-fill-anim 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes progress-fill-anim {
    0% {
        width: 0%;
    }

    100% {
        width: 98%;
    }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-family: 'Fira Code', monospace;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    color: var(--gold);
    opacity: 0.8;
}

.notify-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 10px;
    position: relative;
    flex-wrap: wrap;
    /* Allow wrapping on very small screens */
}

.input-group input {
    flex: 1 1 200px;
    /* Base width of 200px, but flexible */
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.input-group button {
    flex: 0 0 auto;
    padding: 1rem 1.5rem;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    background: #e6c35c;
}

.crypto-ticker {
    position: fixed;
    bottom: 2rem;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.4;
    font-family: 'Fira Code', monospace;
    color: var(--gold);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    display: flex;
    gap: 2rem;
    z-index: 5;
}

.ticker-item {
    display: inline-block;
    animation: ticker-slide 30s linear infinite;
    padding-right: 2rem;
}

@keyframes ticker-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1.5rem;
        justify-content: center;
    }

    .content-card {
        padding: 2rem 1.5rem;
        margin-bottom: 4rem;
        /* Space for ticker */
    }

    .input-group {
        flex-direction: column;
        gap: 15px;
        /* Add gap between stacked items */
    }

    .input-group input {
        width: 100%;
        flex: none;
        /* Prevent stretching */
        padding: 0.8rem 1rem;
        /* Reduce padding */
    }

    .input-group button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        /* Match input height roughly */
    }

    .crypto-ticker {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        letter-spacing: 2px;
    }

    .progress-stats {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}