/* --- CSS Reset & Custom Variables --- */
:root {
    --lime-neon: #a3ff00;
    --text-white: #ffffff;
    --text-muted: #888888;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: #000000;
    color: var(--text-white);
    font-family: var(--font-body);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Background Image & Overlays --- */
.bg-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.65);
    transform: scale(1.05); /* Avoids white blur edges */
    z-index: 0;
}

.overlay-tint {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- Main Layout Wrapper --- */
.app-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: 600px;
    padding: 60px 24px;
    overflow: hidden;
}

/* --- Centered Card content --- */
.teaser-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 40px;
}

/* Meta Line (Month - Eye - Year) */
.meta-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    position: relative;
}

/* Horizontal lines connecting meta texts */
.meta-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.meta-month, .meta-year {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    background: #00000001;
    padding: 0 10px;
    z-index: 2;
}

.hidden-eye-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.hidden-eye-icon:hover {
    transform: scale(1.08);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hidden-eye-icon svg {
    width: 100%;
    height: 100%;
}

/* --- Big Coming Soon Typography --- */
.coming-soon-heading {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.coming-text {
    font-family: var(--font-serif);
    font-size: 54px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: -32px;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.soon-text {
    font-family: var(--font-sans);
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--lime-neon);
    z-index: 1;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(163, 255, 0, 0.2);
    animation: textPulse 3s ease-in-out infinite alternate;
}

@keyframes textPulse {
    0% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.02); filter: brightness(1.1) drop-shadow(0 0 10px rgba(163, 255, 0, 0.1)); }
}

/* --- Details Paragraphs --- */
.teaser-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.detail-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Bottom Button CTA --- */
.cta-button-container {
    width: 100%;
    max-width: 320px;
    margin-top: 10px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--lime-neon);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-btn:hover {
    background: rgba(163, 255, 0, 0.1);
    border-color: var(--lime-neon);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(163, 255, 0, 0.25);
    transform: translateY(-2px);
}

/* --- Footer --- */
.minimal-footer {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.65;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}

.powered-by {
    font-size: 11px;
    letter-spacing: 0.5px;
}

.powered-by a {
    color: var(--lime-neon);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.powered-by a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(163, 255, 0, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .app-container {
        padding: 40px 16px;
    }

    .meta-timeline {
        gap: 40px;
    }

    .coming-text {
        font-size: 42px;
        margin-bottom: -24px;
    }

    .soon-text {
        font-size: 78px;
    }

    .detail-text {
        font-size: 17px;
    }

    .detail-subtext {
        font-size: 15px;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-height: 660px) {
    .app-container {
        padding: 20px 16px;
    }
    .teaser-card {
        gap: 20px;
    }
    .coming-soon-heading {
        margin: 5px 0;
    }
    .coming-text {
        font-size: 38px;
        margin-bottom: -20px;
    }
    .soon-text {
        font-size: 68px;
    }
    .teaser-details {
        gap: 4px;
    }
    .detail-text {
        font-size: 16px;
    }
    .detail-subtext {
        font-size: 14px;
    }
    .minimal-footer {
        margin-top: 20px;
        gap: 6px;
    }
}
