/* ===== COMING-SOON.CSS - BannerTracker Coming Soon Page ===== */
/* Cinematic Dark Theme nach More10.one Vorlage */

/* ===== BODY OVERRIDE ===== */
body {
    overflow: hidden !important;
    height: 100vh !important;
    background: var(--bg-gradient);
    background-attachment: fixed;
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== COMING SOON PAGE ===== */
.coming-soon-page {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.coming-soon-page.loaded {
    opacity: 1;
    filter: blur(0);
}

/* Hero Gradient Overlay */
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(79, 183, 160, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(187, 226, 121, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

/* ===== HEADER ===== */
.cs-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cs-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cs-logo:hover {
    transform: scale(1.05);
}

.cs-logo img {
    height: 40px;
}

.cs-header-tagline {
    display: none;
}

/* ===== CONTENT ===== */
.cs-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    width: 100%;
}

/* Tagline - zentriert, groesser */
.cs-tagline {
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

/* Title - KEIN italic (Azonix hat kein echtes Italic, Browser-Oblique schneidet R ab) */
.cs-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 0;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* BANNER - text-shadow nur hier */
.cs-banner {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* TRACKER - flacher Gradient gruen->gelb, kein Shadow */
.cs-highlight {
    color: transparent;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), #f0f184);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Subtitle mit 3rem Abstand oben und unten */
.cs-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 0.32em;
    letter-spacing: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-style: normal;
    text-shadow: none;
}

/* ===== COUNTDOWN ===== */
.cs-countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.cs-countdown-item {
    text-align: center;
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
}

/* Fixe Breite ohne Hintergrund/Rahmen */
.cs-countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    width: clamp(70px, 10vw, 110px);
    display: inline-block;
    text-align: center;
    position: relative;
}

.cs-countdown-label {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.cs-countdown-separator {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--primary-color);
    opacity: 0.5;
    animation: separatorPulse 2s ease-in-out infinite;
    padding-top: 0.1em;
    line-height: 1;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== FEATURE TEASER ===== */
.cs-features {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.cs-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 1rem;
    background: rgba(var(--bg-panel-rgb), 0.3);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    min-width: 130px;
}

.cs-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(var(--primary-rgb), 0.15);
}

.cs-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.1));
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.cs-feature:hover .cs-feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.cs-feature span {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs-feature:hover span {
    color: var(--secondary-color);
}

/* ===== NOTIFY FORM ===== */
.cs-notify {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.cs-notify-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.cs-notify-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.cs-notify-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(var(--bg-panel-rgb), 0.4);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.cs-notify-input::placeholder {
    color: var(--text-muted);
}

.cs-notify-input:focus {
    border-color: var(--primary-color);
    background: rgba(var(--bg-panel-rgb), 0.6);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.cs-notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.cs-notify-btn:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.4);
    transform: translateX(2px);
}

.cs-notify-btn:active {
    transform: scale(0.97);
}

.cs-notify-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 20px;
    background: rgba(var(--success-rgb), 0.12);
    border: 1px solid rgba(var(--success-rgb), 0.3);
    border-radius: 10px;
    color: var(--success-color);
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 0.5s ease forwards;
}

.cs-notify-success.show {
    display: flex;
}

/* ===== FOOTER ===== */
.cs-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 1rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.cs-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.cs-footer a:hover {
    color: var(--primary-color);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dezenter Glow auf Countdown-Zahlen */
.cs-countdown-value {
    animation: countdownGlow 4s ease-in-out infinite;
}

@keyframes countdownGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.0);
    }
    50% {
        text-shadow: 0 0 25px rgba(var(--primary-rgb), 0.2),
                     0 0 50px rgba(var(--primary-rgb), 0.08);
    }
}

/* Scan Line Effect on the page */
.coming-soon-page::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg,
        transparent 0%,
        rgba(var(--primary-rgb), 0.03) 50%,
        transparent 100%);
    animation: pageScan 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes pageScan {
    0% { top: -100%; }
    50% { top: 100%; }
    50.1%, 100% { top: -100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cs-content {
        padding: 0 1.5rem;
    }

    .cs-tagline {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .cs-countdown-value {
        width: 60px;
        font-size: 2.2rem;
    }

    .cs-countdown-item {
        padding: 0 0.35rem;
    }

    .cs-subtitle {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .cs-features {
        gap: 0.75rem;
    }

    .cs-feature {
        min-width: 100px;
        padding: 1rem 0.75rem;
    }

    .cs-feature-icon {
        width: 40px;
        height: 40px;
    }

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

    .cs-feature span {
        font-size: 9px;
    }

    .cs-notify-form {
        flex-direction: column;
        gap: 10px;
    }

    .cs-notify-input {
        border-right: 1px solid var(--border-color);
        border-radius: 10px;
    }

    .cs-notify-btn {
        border-radius: 10px;
        justify-content: center;
    }

    .cs-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .cs-header {
        padding: 1rem 1.5rem;
    }

    .cs-logo img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .cs-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .cs-countdown-separator {
        font-size: 1.5rem;
    }

    .cs-countdown-value {
        width: 52px;
        font-size: 1.8rem;
    }

    .cs-title {
        letter-spacing: 0;
    }

    .cs-subtitle {
        letter-spacing: 4px;
        font-size: 0.25em;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cs-tagline {
        font-size: 12px;
        letter-spacing: 3px;
    }
}