/* ============================================
   SZAMAA — Coming Soon Countdown Page
   ============================================ */

@font-face {
    font-family: 'Order Snack';
    src: url('fonts/Order-Snack-BF68ea4cb36ed99.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --clr-bg: #0a0a0f;
    --clr-bg-2: #12121a;
    --clr-primary: #ff6b35;
    --clr-primary-light: #ff8c5a;
    --clr-primary-dark: #e55a25;
    --clr-accent: #ffd166;
    --clr-text: #f0f0f5;
    --clr-text-muted: #8888a0;
    --clr-glass: rgba(255, 255, 255, 0.04);
    --clr-glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* ---- Canvas particles ---- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- Glow Orbs ---- */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.glow-orb--1 {
    width: 500px;
    height: 500px;
    background: var(--clr-primary);
    top: -150px;
    right: -100px;
    animation: float1 12s ease-in-out infinite;
}

.glow-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--clr-accent);
    bottom: -100px;
    left: -100px;
    animation: float2 15s ease-in-out infinite;
}

.glow-orb--3 {
    width: 300px;
    height: 300px;
    background: #a855f7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 60px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.35; }
}

/* ---- Container ---- */
.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 30px 24px 60px;
    max-width: 700px;
    width: 100%;
}

/* ---- Brand ---- */
.brand {
    text-align: center;
}

.brand__name {
    font-family: 'Order Snack', var(--font-heading);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 16px;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.25), 0 0 40px rgba(255, 209, 102, 0.12);
    white-space: nowrap;
}

.brand__letter {
    display: inline-block;
    animation: letterBounce 0.6s ease calc(var(--i) * 0.1s) both;
}

@keyframes letterBounce {
    0% { opacity: 0; transform: translateY(-50px) scale(0.3); }
    50% { opacity: 1; transform: translateY(8px) scale(1.05); }
    70% { transform: translateY(-4px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.brand__tagline {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

/* ---- Countdown ---- */
.countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.countdown__block {
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 24px 0;
    width: 100px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown__block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.countdown__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum';
}

.countdown__label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.countdown__separator {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    animation: pulse 1s ease-in-out infinite;
    margin-top: -20px;
}

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

/* ---- Progress ---- */
.progress {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: var(--clr-glass);
    border-radius: 100px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 1s both;
}

.progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 100px;
    transition: width 1s ease;
    position: relative;
}

.progress__bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--clr-accent);
}

.progress__text {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: -32px;
    animation: fadeInUp 0.8s ease 1s both;
}

/* ---- Notify Form ---- */
.notify {
    text-align: center;
    width: 100%;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.notify__text {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.notify__form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.notify__input {
    flex: 1;
    padding: 14px 20px;
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notify__input::placeholder {
    color: var(--clr-text-muted);
}

.notify__input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.notify__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.notify__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}

.notify__btn:active {
    transform: translateY(0);
}

.notify__success {
    display: none;
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
    color: #22c55e;
    font-size: 0.9rem;
}

.notify__success.is-visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* ---- Socials ---- */
.socials {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 1.4s both;
}

.socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.socials__link:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 1;
    padding: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    opacity: 0.6;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .container {
        gap: 36px;
        padding: 40px 16px;
    }

    .countdown {
        gap: 6px;
    }

    .countdown__block {
        padding: 16px 0;
        width: 72px;
        border-radius: 12px;
    }

    .countdown__separator {
        font-size: 1.8rem;
    }

    .notify__form {
        flex-direction: column;
    }

    .notify__btn {
        justify-content: center;
    }

    .glow-orb--1 { width: 250px; height: 250px; }
    .glow-orb--2 { width: 200px; height: 200px; }
    .glow-orb--3 { width: 150px; height: 150px; }
}
