/* epicshots.com.au - coming soon styles */

:root {
    --bg-1: #0a0e1a;
    --bg-2: #1a2238;
    --accent: #ff6b35;
    --accent-2: #ffd23f;
    --text: #f5f7fa;
    --text-muted: #9aa3b2;
    --panel: rgba(255, 255, 255, 0.04);
    --panel-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html, body { height: 100%; }

body.coming-soon {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg-1);
    background-image:
        linear-gradient(rgba(10, 14, 26, 0.78), rgba(10, 14, 26, 0.92)),
        var(--coming-bg, radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-1) 60%));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

.hero { width: 100%; max-width: 720px; }

.hero__inner {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.hero__tagline {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.hero__launched {
    font-size: 1.25rem;
    color: var(--accent-2);
    margin: 2rem 0;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 0 0 2.5rem;
}

.countdown__cell {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__num {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--text);
    line-height: 1;
}

.countdown__label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.notify { margin-top: 1rem; }

.notify__label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.notify__row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notify input[type="email"] {
    flex: 1 1 220px;
    min-width: 0;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--panel-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-size: 1rem;
}

.notify input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
}

.notify button {
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0e1a;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.15s ease;
}

.notify button:hover { transform: translateY(-1px); }
.notify button:active { transform: translateY(0); }

.notify__hp { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }

/* Invisible Turnstile: no visual real estate unless it has to challenge. */
.cf-turnstile { display: block; height: 0; overflow: hidden; }

.notify__status {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 1.2em;
}

.noscript {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: var(--accent);
    color: #0a0e1a;
    text-align: center;
    font-size: 0.9rem;
    z-index: 100;
}

.notify__hint {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero__foot {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--panel-border);
}

.foot__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.foot__link:hover { color: var(--accent); }

/* Notify response page */
.notice {
    max-width: 520px;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.notice h1 { font-size: 1.75rem; margin-bottom: 1rem; }
.notice p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.notice a  { color: var(--accent); text-decoration: none; font-weight: 600; }
.notice .fa-circle-check { color: var(--accent-2); font-size: 3rem; margin-bottom: 1rem; display: block; }
.notice .fa-circle-exclamation { color: var(--accent); font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ---- Responsive breakpoints --------------------------------------------- */

/* Phone (small) */
@media (max-width: 480px) {
    .hero__inner { padding: 2rem 1.25rem; }
    .countdown { gap: 0.4rem; }
    .countdown__cell { padding: 0.75rem 0.25rem; }
    .notify__row { flex-direction: column; }
    .notify button { width: 100%; justify-content: center; }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 1023px) {
    .hero { max-width: 640px; }
    .hero__inner { padding: 2.5rem 2rem; }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero { max-width: 760px; }
    .hero__inner { padding: 3.5rem 3rem; }
    .countdown { gap: 1rem; }
    .countdown__cell { padding: 1.25rem 0.75rem; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .notify button { transition: none; }
}
