/* Cold Cure Collective — shared styles */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0c0c0d;
}

/* Ambient backdrop glow — teal + gold, echoing the collective's seal */
.ice-glow-backdrop {
    background: radial-gradient(circle at top right, rgba(47, 216, 229, 0.05), transparent 60%),
                radial-gradient(circle at bottom left, rgba(201, 169, 97, 0.06), transparent 55%);
}

/* Age gate fade-out transition */
#gate-container {
    transition: opacity 0.4s ease-out;
}

/* Thin gold hairline used to bridge the header/footer to the seal's gold ring */
.gold-hairline {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.55), transparent);
}

::selection {
    background: rgba(47, 216, 229, 0.25);
    color: #bff4f9;
}

/* Focus visibility for accessibility across custom controls */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #2FD8E5;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}