/* Outfit — geometric, friendly, technically capable without being cold */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-text: #e8e4df;
    --color-text-dim: #7a7670;
    --color-red: #c0283a;
    --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: #000;
}

body {
    font-family: var(--font-display);
    color: var(--color-text);
}

/* Arxrise — fills viewport, covers, no black bars */
.arxrise {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: #000;
}

.arxrise img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 2s ease;
}

.arxrise img.loaded {
    opacity: 1;
}

/* Wolf logo — darker, smaller, blended behind earth */
.wolf {
    position: fixed;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(50vw, 50vh);
    height: min(50vw, 50vh);
    opacity: 0.06;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: wolfFade 4s ease-out forwards;
}

.wolf img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes wolfFade {
    from { opacity: 0; }
    to { opacity: 0.06; }
}

/* Centre overlay — countdown large in middle */
.centre {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15vh;
    pointer-events: none;
}

.countdown {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: baseline;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    min-width: 2ch;
    text-align: center;
    display: inline-block;
    transition: opacity 0.4s ease;
}

.countdown-value.tick {
    opacity: 0.3;
}

.countdown-label {
    font-size: clamp(0.5rem, 1vw, 0.65rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.06);
    margin-top: 0.4rem;
}

.countdown-sep {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    align-self: flex-start;
    margin-top: 0.15em;
}

/* Pillars — below countdown, faded */
.pillars {
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: clamp(4rem, 8vw, 7rem);
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s ease-out 0.3s forwards;
}

.pillars span {
    font-size: clamp(0.7rem, 1.3vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
}

.pillars-side {
    display: flex;
    align-items: center;
    gap: 0;
}

.pillars-side.pillars-left {
    justify-content: flex-end;
    flex: 1;
}

.pillars-side.pillars-right {
    justify-content: flex-start;
    flex: 1;
}

.pillars-centre {
    font-size: clamp(0.7rem, 1.3vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
}

.pillars .dot {
    color: rgba(0, 0, 0, 0.15);
    letter-spacing: 0;
    margin: 0 clamp(0.5rem, 1.5vw, 1.5rem);
}

/* Bottom content — strapline + date + url */
.content {
    position: fixed;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: min(8vh, 80px);
    pointer-events: none;
}

.strapline {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    animation: fadeUp 1.5s ease-out 2s forwards;
    text-shadow: 0 2px 30px rgba(0,0,0,0.9);
}

.strapline.managed {
    font-weight: 600;
    color: var(--color-red);
    margin-top: 0.1rem;
    animation-delay: 2.3s;
}

.coming {
    font-size: clamp(0.6rem, 1.1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-top: 1.8rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 3.1s forwards;
    text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}

.url {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-dim);
    letter-spacing: 0.14em;
    opacity: 0;
    animation: fadeUp 1s ease-out 2.8s forwards;
    margin-top: 1.5rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

.footer-left,
.footer-right {
    position: fixed;
    z-index: 3;
    bottom: 1.5rem;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease-out 3.4s forwards;
    pointer-events: auto;
}

.footer-left {
    left: 1.5rem;
}

.footer-right {
    right: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-right a {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.footer-right a:hover {
    color: rgba(255, 255, 255, 0.45);
}

.adventure a {
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.adventure a .mf-meta,
.adventure a .mf-fury {
    transition: color 0.3s ease;
}

.adventure a:hover .mf-meta {
    color: #ffffff;
}

.adventure a:hover .mf-fury {
    color: var(--color-red);
}

.footer-sep {
    margin: 0 0.5rem;
    opacity: 0.3;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .content { padding-bottom: min(6vh, 48px); }
    .countdown { gap: 0.3rem; }
}
