/* Outfit — same family as ArXanE */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-text: #e8e4df;
    --color-text-dim: #7a7670;
    --color-accent: #3b80f2;
    --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

body {
    font-family: var(--font-display);
    color: var(--color-text);
}

/* Backdrop */
.backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: #0a0a0a;
}

.backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    transition: opacity 2s ease;
}

.backdrop img.loaded {
    opacity: 1;
}

/* Icon — static, above the words */
.centre-icon {
    position: fixed;
    z-index: 2;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    height: clamp(1.6rem, 3.2vw, 2.4rem);
    width: auto;
    opacity: 0.5;
    pointer-events: none;
}

/* Centre — words centred as one unit */
.centre {
    position: fixed;
    z-index: 2;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    pointer-events: none;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    letter-spacing: 0.04em;
    opacity: 0;
}

.bid {
    font-weight: 200;
    color: rgba(255, 255, 255, 0.75);
    margin-right: 0.25em;
}

.bid-more {
    font-weight: inherit;
    transition: font-weight 0.6s ease;
}

.bid-more.emphasis {
    font-weight: 500;
}

.bid-stop {
    font-weight: 200;
    font-style: normal;
}

/* Rotating word */
.rotating {
    font-weight: 300;
    color: var(--color-accent);
}

/* Brandline — icon centred above, "bidwalker" below */
.brandline {
    position: fixed;
    z-index: 2;
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.6rem, 1.5vw, 1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 2.5s ease;
}

.brandline-icon {
    height: clamp(2rem, 4vw, 3rem);
    width: auto;
    opacity: 0.6;
}

.brandline-name {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.12em;
}

.brandline-bid {
    color: rgba(255, 255, 255, 0.8);
}

.brandline-walker {
    color: var(--color-accent);
}

/* Bottom content */
.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;
}

.powered {
    position: fixed;
    z-index: 3;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.1em;
    opacity: 0;
    pointer-events: auto;
}

.powered a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.powered a:hover {
    color: #c0283a;
}

.coming {
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, clamp(5rem, 11vw, 8rem));
    font-size: clamp(0.6rem, 1.1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    opacity: 0;
    pointer-events: none;
}

/* Footer */
.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;
    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: #c0283a; }

.footer-sep {
    margin: 0 0.5rem;
    opacity: 0.3;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 480px) {
    .content { padding-bottom: min(6vh, 48px); }
}
