/* coming-soon/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --ws-bg-main: #0a0a0e;
    --ws-bg-panel: #14141d;
    --ws-bg-card: rgba(30, 30, 40, 0.4);
    --ws-primary: #5826d6;
    --ws-primary-hover: #6a3aeb;
    --ws-primary-light: #a985ff;
    --ws-text-main: #ffffff;
    --ws-text-muted: #8e8e9f;
    --ws-border: rgba(255, 255, 255, 0.08);
    --ws-radius-lg: 24px;
    --ws-radius-md: 16px;
    --ws-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--ws-bg-main);
    color: var(--ws-text-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('assets/img/bg.png') no-repeat center center/cover;
    filter: brightness(0.6);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--ws-bg-main) 100%);
}

.content-wrapper {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.brand-logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--ws-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.2rem;
    color: var(--ws-text-muted);
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 300;
}

.coming-soon-card {
    background: var(--ws-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-lg);
    padding: 40px 60px;
    width: 100%;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    scrollbar-width: none;
}

.coming-soon-card::-webkit-scrollbar {
    display: none;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(88, 38, 214, 0.15);
    border: 1px solid rgba(88, 38, 214, 0.3);
    border-radius: 50px;
    color: var(--ws-primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ws-primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ws-primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.insider-info {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--ws-text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

.insider-info::before, .insider-info::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: var(--ws-primary-light);
    opacity: 0.2;
    font-family: serif;
}

.insider-info::before { left: -10px; top: -20px; }
.insider-info::after { right: -10px; bottom: -40px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.feature-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--ws-radius-md);
    border: 1px solid transparent;
    transition: var(--ws-transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ws-border);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--ws-primary-light);
    margin-bottom: 12px;
}

.feature-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--ws-text-muted);
}

.cta-section {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.email-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--ws-border);
    padding: 16px 24px;
    border-radius: var(--ws-radius-md);
    color: white;
    width: 300px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--ws-transition);
}

.email-input:focus {
    outline: none;
    border-color: var(--ws-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(88, 38, 214, 0.2);
}

.btn-notify {
    background: var(--ws-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--ws-radius-md);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--ws-transition);
    font-size: 1rem;
}

.btn-notify:hover {
    background: var(--ws-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 38, 214, 0.4);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

.social-link {
    color: var(--ws-text-muted);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--ws-transition);
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-text {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--ws-text-muted);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo { font-size: 2.2rem; }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .cta-section {
        flex-direction: column;
        width: 100%;
    }
    
    .email-input {
        width: 100%;
    }
    
    .coming-soon-card {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
}
