/* Coming Soon template styles */
:root {
    --grad-from: #0f172a;
    /* slate-900 */
    --grad-to: #1e293b;
    /* slate-800 */
    --card-bg: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 15px;
    /* smaller base size */
    background: linear-gradient(140deg, var(--grad-from), var(--grad-to));
    position: relative;
    overflow-x: hidden;
}

/* Background subtle grid */
.bg-overlay::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(255, 193, 7, 0.12), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
.hover-opacity {
    transition: opacity .2s ease;
}

.hover-opacity:hover {
    opacity: .85;
}

.social a {
    padding: 6px;
    border-radius: 8px;
}

.social a:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

/* Hero graphic placeholder */
.hero-graphic {
    width: min(420px, 80%);
    aspect-ratio: 1/1;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 193, 7, .18), rgba(255, 255, 255, .06));
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 0 40px rgba(255, 193, 7, 0.08);
    animation: float 6s ease-in-out infinite;
}

/* Logo image styling */
.logo-img {
    width: min(460px, 90%);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .35));
    animation: float 6s ease-in-out infinite;
}

/* Header logo sizing */
.header-logo {
    height: 36px;
    width: auto;
    display: inline-block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Countdown */
.time-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 90px;
    text-align: center;
}

.time-box .value {
    display: block;
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 800;
}

.time-box .label {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

/* Typography tweaks */
.fw-extrabold {
    font-weight: 800;
}

.display-4 {
    font-size: clamp(2rem, 6vw, 3rem);
}

/* Gradient heading text */
.gradient-text {
    background: linear-gradient(90deg, #ffd166, #ff7b7b, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Forms */
.form-control-lg {
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border-color: var(--border);
}

.form-control-lg::placeholder {
    color: rgba(255, 255, 255, .55);
}

.form-control:focus {
    border-color: rgba(255, 193, 7, .65);
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .15);
}

button.btn:focus-visible {
    box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .3);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Decorative orbs */
.orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    filter: blur(40px);
    opacity: .35;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: drift 16s ease-in-out infinite;
}

.orb-1 {
    width: 320px;
    height: 320px;
    left: -60px;
    top: -60px;
    background: radial-gradient(circle, #ffdd57, transparent 60%);
}

.orb-2 {
    width: 280px;
    height: 280px;
    right: 10%;
    top: 20%;
    background: radial-gradient(circle, #ff7b7b, transparent 60%);
    animation-delay: -4s;
}

.orb-3 {
    width: 360px;
    height: 360px;
    left: 15%;
    bottom: -80px;
    background: radial-gradient(circle, #8b5cf6, transparent 60%);
    animation-delay: -8s;
}

@keyframes drift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(20px, -20px, 0) scale(1.05);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Small screens font-size adjustment */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}