:root {
    --contest-bg: #050504;
    --contest-surface: #0d0c09;
    --contest-surface-raised: #15130e;
    --contest-surface-soft: #1a1710;
    --contest-line: rgba(240, 200, 92, .16);
    --contest-line-strong: rgba(240, 200, 92, .4);
    --contest-text: #fff8e9;
    --contest-muted: #aaa18d;
    --contest-gold: var(--contest-accent, #f0c85c);
    --contest-gold-fixed: #f0c85c;
    --contest-ink: #171208;
    --contest-success: #72cf99;
    --contest-danger: #e06d60;
    --contest-shadow: 0 28px 86px rgba(0, 0, 0, .52);
    --contest-shadow-soft: 0 18px 54px rgba(0, 0, 0, .32);
    --contest-hero-shift: 0px;
}

body.contest-public-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--contest-bg);
    color: var(--contest-text);
    font-family: "Manrope", sans-serif;
}

body.contest-public-page.registration-modal-open {
    overflow: hidden;
}

.contest-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12000;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.contest-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--contest-gold);
    box-shadow: 0 0 16px rgba(240, 200, 92, .48);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.contest-landing {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--contest-bg);
}

.contest-hero {
    position: relative;
    display: flex;
    min-height: min(820px, calc(100svh - 92px));
    align-items: end;
    width: min(1540px, calc(100% - 32px));
    margin: 16px auto 0;
    overflow: hidden;
    border: 1px solid var(--contest-line-strong);
    border-radius: 32px;
    background: #0b0a08;
    box-shadow: var(--contest-shadow);
    isolation: isolate;
}

.contest-hero-visual {
    position: absolute;
    inset: -5%;
    z-index: 0;
    background-position: center 38%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(.9) contrast(1.08) saturate(.95);
    transform: translate3d(0, var(--contest-hero-shift), 0) scale(1.06);
    will-change: transform;
    animation: contest-hero-enter 1.05s cubic-bezier(.2, .75, .2, 1) both;
}

.contest-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(4, 4, 3, .34);
}

.contest-hero-copy-shade {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: min(72%, 1020px);
    border-right: 1px solid rgba(240, 200, 92, .13);
    background: rgba(4, 4, 3, .79);
    box-shadow: 56px 0 100px rgba(4, 4, 3, .68);
}

.contest-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.contest-hero-lines::before,
.contest-hero-lines::after {
    content: "";
    position: absolute;
    background: rgba(240, 200, 92, .13);
}

.contest-hero-lines::before {
    top: 0;
    bottom: 0;
    left: 25%;
    width: 1px;
}

.contest-hero-lines::after {
    right: 0;
    bottom: 112px;
    left: 0;
    height: 1px;
}

.contest-hero-content {
    position: relative;
    z-index: 4;
    width: min(1300px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(110px, 13vw, 188px) 0 clamp(58px, 8vw, 100px);
}

.contest-hero-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(54px, 7vw, 94px);
    color: rgba(255, 248, 233, .48);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .21em;
    text-transform: uppercase;
}

.contest-hero-topline::after {
    content: "";
    width: min(190px, 18vw);
    height: 1px;
    background: rgba(240, 200, 92, .42);
}

.contest-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--contest-gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contest-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--contest-gold);
}

.contest-hero h1 {
    max-width: 980px;
    margin: 18px 0 24px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4.2rem, 9.4vw, 9rem);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.018em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 16px 42px rgba(0, 0, 0, .44);
}

.contest-hero-copy {
    max-width: 740px;
    margin: 0;
    color: #d4cbbb;
    font-size: clamp(1rem, 1.65vw, 1.2rem);
    line-height: 1.76;
}

.contest-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 32px;
}

.contest-button {
    position: relative;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 12px 19px;
    border: 1px solid var(--contest-line-strong);
    border-radius: 13px;
    background: #0b0a08;
    color: var(--contest-text);
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.contest-button::after {
    content: "";
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: -30px;
    width: 16px;
    background: rgba(255, 255, 255, .2);
    transform: skewX(-18deg) translateX(-58px);
    transition: transform .5s ease;
}

.contest-button:hover {
    border-color: var(--contest-gold);
    background: var(--contest-surface-soft);
    transform: translateY(-2px);
}

.contest-button:hover::after {
    transform: skewX(-18deg) translateX(280px);
}

.contest-button.is-primary {
    border-color: var(--contest-gold);
    background: var(--contest-gold);
    color: var(--contest-ink);
    box-shadow: 0 12px 30px rgba(240, 200, 92, .18);
}

.contest-button.is-primary:hover {
    background: var(--contest-gold-fixed);
    box-shadow: 0 16px 38px rgba(240, 200, 92, .25);
}

.contest-button.is-full {
    width: 100%;
}

.contest-hero-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
}

.contest-hero-status {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(5, 5, 4, .75);
    color: #d4cbbb;
    font-size: .68rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.contest-hero-status strong {
    color: var(--contest-text);
}

.contest-hero-status > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--contest-muted);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .035);
}

.contest-hero-status.is-open > i {
    background: var(--contest-success);
    box-shadow: 0 0 0 5px rgba(114, 207, 153, .08), 0 0 14px rgba(114, 207, 153, .42);
    animation: contest-status-pulse 1.8s ease-in-out infinite;
}

.contest-scroll-cue {
    position: absolute;
    right: clamp(20px, 3vw, 46px);
    bottom: 34px;
    z-index: 5;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: rgba(255, 248, 233, .52);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contest-scroll-cue i {
    display: block;
    width: 1px;
    height: 38px;
    background: var(--contest-gold);
    transform-origin: top;
    animation: contest-scroll-cue 1.8s ease-in-out infinite;
}

.contest-scene-band {
    position: relative;
    display: grid;
    min-height: 340px;
    width: min(1400px, calc(100% - 52px));
    margin: 44px auto 0;
    overflow: hidden;
    border: 1px solid var(--contest-line);
    border-radius: 26px;
    background: #090806;
    box-shadow: var(--contest-shadow-soft);
    isolation: isolate;
}

.contest-scene-photo {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(.72) contrast(1.08) saturate(.9);
    transition: transform 1.1s cubic-bezier(.2, .75, .2, 1);
}

.contest-scene-photo.is-crowd {
    left: 0;
    width: 64%;
}

.contest-scene-photo.is-vocalist {
    right: 0;
    width: 42%;
    border-left: 1px solid rgba(240, 200, 92, .18);
}

.contest-scene-band:hover .contest-scene-photo.is-crowd {
    transform: scale(1.025);
}

.contest-scene-band:hover .contest-scene-photo.is-vocalist {
    transform: scale(1.04);
}

.contest-scene-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(4, 4, 3, .58);
}

.contest-scene-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    width: min(690px, calc(100% - 52px));
    padding: clamp(46px, 7vw, 82px);
}

.contest-scene-copy > span {
    color: var(--contest-gold);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contest-scene-copy > strong {
    margin-top: 16px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 400;
    line-height: .88;
    text-transform: uppercase;
    text-wrap: balance;
}

.contest-scene-copy > small {
    max-width: 560px;
    margin-top: 18px;
    color: #c3baa8;
    font-size: .9rem;
    line-height: 1.7;
}

.contest-content-zone {
    position: relative;
    margin-top: 46px;
    overflow: hidden;
    border-top: 1px solid rgba(240, 200, 92, .08);
    background: var(--contest-bg);
    isolation: isolate;
}

.contest-content-background {
    position: absolute;
    top: 0;
    right: -7%;
    z-index: 0;
    width: min(760px, 55vw);
    height: 740px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(.15) brightness(.48) contrast(1.08);
    opacity: .24;
    transform: rotate(2deg);
}

.contest-content-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(5, 5, 4, .66);
}

.contest-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(370px, .75fr);
    gap: 24px;
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0 104px;
}

.contest-content-stack {
    display: grid;
    align-content: start;
    gap: 18px;
}

.contest-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--contest-line);
    border-radius: 22px;
    background: rgba(13, 12, 9, .95);
    padding: clamp(24px, 4vw, 38px);
    box-shadow: var(--contest-shadow-soft);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    isolation: isolate;
}

.contest-panel:hover {
    border-color: rgba(240, 200, 92, .36);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
    transform: translateY(-3px);
}

.contest-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 74px;
    height: 3px;
    background: var(--contest-gold);
    transition: width .3s ease;
}

.contest-panel:hover::before {
    width: 136px;
}

.contest-panel.has-photo::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 42%;
    background-image: var(--contest-panel-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(.52) contrast(1.08) saturate(.85);
    opacity: .22;
    pointer-events: none;
}

.contest-panel > * {
    position: relative;
    z-index: 2;
}

.contest-panel h2 {
    margin: 11px 0 20px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.1rem, 4.4vw, 3.8rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: .005em;
    text-transform: uppercase;
}

.contest-rich-copy {
    max-width: 830px;
    color: var(--contest-muted);
    line-height: 1.86;
    white-space: pre-line;
}

.contest-prize {
    border-color: var(--contest-gold);
    background: rgba(18, 16, 8, .96);
}

.contest-prize::after {
    content: "PREMIO";
    position: absolute;
    top: 13px;
    right: 22px;
    z-index: 0;
    color: rgba(240, 200, 92, .075);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4.5rem, 10vw, 8rem);
    line-height: 1;
    pointer-events: none;
}

.contest-prize > strong {
    display: block;
    max-width: 790px;
    margin-top: 18px;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    line-height: 1.45;
}

.contest-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 27px;
}

.contest-fact {
    min-height: 100px;
    padding: 16px;
    border: 1px solid var(--contest-line);
    border-radius: 14px;
    background: #090806;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.contest-fact:hover {
    border-color: var(--contest-gold);
    background: #0d0b08;
    transform: translateY(-2px);
}

.contest-fact span {
    display: block;
    color: var(--contest-muted);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contest-fact strong {
    display: block;
    margin-top: 9px;
    color: var(--contest-text);
    font-size: .94rem;
    line-height: 1.45;
}

.contest-registration {
    position: sticky;
    top: 112px;
    align-self: start;
    border-color: rgba(240, 200, 92, .42);
    background: rgba(8, 7, 5, .98);
}

.contest-registration::after {
    content: "FOLIO OFICIAL";
    position: absolute;
    top: 30px;
    right: 28px;
    z-index: 2;
    color: rgba(240, 200, 92, .38);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .17em;
}

.contest-registration-brand {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(240, 200, 92, .24);
    border-radius: 50%;
    background: #050504;
    box-shadow: 0 0 0 8px rgba(240, 200, 92, .025), 0 16px 34px rgba(0, 0, 0, .34);
}

.contest-registration-brand img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.contest-registration h2 {
    margin-bottom: 10px;
}

.contest-registration-intro {
    margin: 0 0 23px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--contest-line);
    color: var(--contest-muted);
    line-height: 1.66;
}

.contest-form {
    display: grid;
    gap: 15px;
}

.contest-field {
    display: grid;
    gap: 8px;
}

.contest-field label,
.contest-field > span {
    color: #ebe3d2;
    font-size: .79rem;
    font-weight: 800;
}

.contest-field input,
.contest-field textarea,
.contest-field select {
    width: 100%;
    min-height: 49px;
    border: 1px solid #353025;
    border-radius: 11px;
    background: #050504;
    color: var(--contest-text);
    padding: 11px 13px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, transform .18s ease;
}

.contest-field input::placeholder,
.contest-field textarea::placeholder {
    color: #686153;
}

.contest-field textarea {
    min-height: 118px;
    resize: vertical;
}

.contest-field input:hover,
.contest-field textarea:hover,
.contest-field select:hover {
    border-color: #594c2e;
}

.contest-field input:focus,
.contest-field textarea:focus,
.contest-field select:focus {
    border-color: var(--contest-gold);
    background: #090806;
    box-shadow: 0 0 0 3px rgba(240, 200, 92, .11);
    transform: translateY(-1px);
}

.contest-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
    color: var(--contest-muted);
    font-size: .78rem;
    line-height: 1.55;
}

.contest-check input {
    width: 18px;
    min-height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--contest-gold-fixed);
}

.contest-field-error {
    color: #ff9d93;
    font-size: .76rem;
}

.contest-error-box,
.contest-success-box {
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 14px;
    line-height: 1.55;
}

.contest-error-box {
    border: 1px solid rgba(224, 109, 96, .58);
    background: rgba(224, 109, 96, .075);
    color: #ffc2bb;
}

.contest-error-box ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.contest-success-box {
    border: 1px solid rgba(114, 207, 153, .52);
    background: rgba(114, 207, 153, .07);
}

.contest-success-box strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.js .contest-success-inline {
    display: none;
}

.contest-closed {
    padding: 20px 0 4px;
}

.contest-closed > strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.contest-closed p {
    color: var(--contest-muted);
    line-height: 1.65;
}

.contest-winners {
    display: grid;
    gap: 11px;
}

.contest-winner-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid var(--contest-line);
    border-radius: 14px;
    background: var(--contest-surface-raised);
    transition: transform .18s ease, border-color .18s ease;
}

.contest-winner-card:hover {
    border-color: var(--contest-gold);
    transform: translateX(4px);
}

.contest-winner-place {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid var(--contest-gold);
    border-radius: 50%;
    color: var(--contest-gold);
    font-weight: 900;
}

.contest-winner-card strong {
    display: block;
}

.contest-winner-card span {
    display: block;
    margin-top: 3px;
    color: var(--contest-muted);
    font-size: .79rem;
}

.contest-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contest-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 82px;
    z-index: 900;
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border: 1px solid var(--contest-gold);
    border-radius: 14px;
    background: rgba(9, 8, 6, .95);
    color: var(--contest-gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease, color .2s ease;
}

.contest-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contest-back-to-top:hover {
    background: var(--contest-gold);
    color: var(--contest-ink);
}

.registration-complete-modal {
    position: fixed;
    inset: 0;
    z-index: 15000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.registration-complete-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.registration-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 2, .82);
    backdrop-filter: blur(13px);
}

.registration-modal-card {
    position: relative;
    width: min(720px, 100%);
    max-height: min(820px, calc(100svh - 40px));
    overflow: auto;
    border: 1px solid rgba(240, 200, 92, .5);
    border-radius: 28px;
    background: #080705;
    box-shadow: 0 38px 120px rgba(0, 0, 0, .74);
    opacity: 0;
    transform: translateY(24px) scale(.975);
    transition: opacity .3s ease, transform .36s cubic-bezier(.2, .8, .2, 1);
    isolation: isolate;
}

.registration-complete-modal.is-open .registration-modal-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.registration-modal-photo,
.registration-modal-photo-shade {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.registration-modal-photo {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(.48) contrast(1.08) saturate(.9);
    opacity: .48;
}

.registration-modal-photo-shade {
    background: rgba(4, 4, 3, .76);
}

.registration-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(240, 200, 92, .26);
    border-radius: 50%;
    background: rgba(5, 5, 4, .88);
    color: var(--contest-text);
    font-size: 1.35rem;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.registration-modal-close:hover {
    border-color: var(--contest-gold);
    background: var(--contest-gold);
    color: var(--contest-ink);
    transform: rotate(5deg);
}

.registration-modal-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    padding: clamp(50px, 8vw, 76px) clamp(24px, 7vw, 68px) clamp(36px, 6vw, 58px);
    text-align: center;
}

.registration-modal-logo {
    width: clamp(150px, 28vw, 230px);
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .4));
    animation: registration-logo-enter .72s cubic-bezier(.2, .8, .2, 1) both;
}

.registration-modal-kicker {
    margin-top: 22px;
    color: var(--contest-gold);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.registration-modal-content h2 {
    margin: 12px 0 14px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.4rem, 9vw, 6.4rem);
    font-weight: 400;
    line-height: .86;
    text-transform: uppercase;
}

.registration-modal-content > p {
    max-width: 540px;
    margin: 0;
    color: #d0c6b4;
    line-height: 1.72;
}

.registration-modal-content > p strong {
    color: var(--contest-text);
}

.registration-modal-folio {
    display: grid;
    width: min(440px, 100%);
    justify-items: center;
    margin-top: 26px;
    padding: 18px;
    border: 1px solid var(--contest-gold);
    border-radius: 16px;
    background: rgba(5, 5, 4, .82);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .32);
}

.registration-modal-folio > span {
    color: var(--contest-muted);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.registration-modal-folio code {
    margin-top: 8px;
    color: var(--contest-gold);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.45rem, 5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: .06em;
    overflow-wrap: anywhere;
}

.registration-modal-folio button {
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: #d4cbbb;
    font-size: .75rem;
    font-weight: 850;
    cursor: pointer;
}

.registration-modal-folio button:hover {
    color: var(--contest-gold);
}

.registration-modal-note {
    margin-top: 18px !important;
    color: var(--contest-muted) !important;
    font-size: .82rem;
}

.registration-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.registration-confetti {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.registration-confetti i {
    position: absolute;
    top: -22px;
    width: 7px;
    height: 20px;
    border-radius: 999px;
    background: var(--contest-gold);
    opacity: .72;
    animation: registration-confetti-fall 2.4s ease-in-out infinite;
}

.registration-confetti i:nth-child(1) { left: 10%; animation-delay: -.3s; }
.registration-confetti i:nth-child(2) { left: 26%; animation-delay: -1.4s; transform: rotate(35deg); }
.registration-confetti i:nth-child(3) { left: 42%; animation-delay: -.8s; }
.registration-confetti i:nth-child(4) { left: 60%; animation-delay: -1.9s; transform: rotate(-28deg); }
.registration-confetti i:nth-child(5) { left: 78%; animation-delay: -.5s; }
.registration-confetti i:nth-child(6) { left: 91%; animation-delay: -1.2s; transform: rotate(45deg); }

.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.2, .75, .2, 1) var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes contest-hero-enter {
    from { opacity: 0; transform: translate3d(0, 18px, 0) scale(1.12); }
    to { opacity: 1; transform: translate3d(0, var(--contest-hero-shift), 0) scale(1.06); }
}

@keyframes contest-status-pulse {
    50% { box-shadow: 0 0 0 8px rgba(114, 207, 153, .035), 0 0 18px rgba(114, 207, 153, .5); }
}

@keyframes contest-scroll-cue {
    0%, 100% { transform: scaleY(.35); opacity: .42; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes registration-logo-enter {
    from { opacity: 0; transform: translateY(-12px) scale(.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes registration-confetti-fall {
    0% { opacity: 0; transform: translate3d(0, -10px, 0) rotate(0); }
    16% { opacity: .72; }
    100% { opacity: 0; transform: translate3d(30px, 720px, 0) rotate(260deg); }
}

@media (max-width: 1120px) {
    .contest-hero-copy-shade {
        width: 84%;
    }

    .contest-layout {
        grid-template-columns: 1fr;
    }

    .contest-registration {
        position: static;
    }
}

@media (max-width: 760px) {
    .contest-hero {
        width: calc(100% - 20px);
        min-height: 700px;
        margin-top: 10px;
        border-radius: 22px;
    }

    .contest-hero-visual {
        background-position: 60% center;
        filter: brightness(.78) contrast(1.05) saturate(.9);
    }

    .contest-hero-shade {
        background: rgba(4, 4, 3, .48);
    }

    .contest-hero-copy-shade {
        width: 100%;
        border-right: 0;
        background: rgba(4, 4, 3, .65);
        box-shadow: none;
    }

    .contest-hero-lines::before {
        left: 50%;
    }

    .contest-hero-lines::after {
        bottom: 98px;
    }

    .contest-hero-content {
        width: calc(100% - 34px);
        padding: 94px 0 47px;
    }

    .contest-hero-topline {
        margin-bottom: 54px;
    }

    .contest-hero h1 {
        font-size: clamp(3.7rem, 19vw, 6.3rem);
    }

    .contest-hero-actions,
    .contest-hero-status-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contest-hero-actions .contest-button {
        width: 100%;
    }

    .contest-scroll-cue {
        display: none;
    }

    .contest-scene-band {
        min-height: 500px;
        width: calc(100% - 22px);
        margin-top: 26px;
        border-radius: 20px;
    }

    .contest-scene-photo.is-crowd {
        width: 100%;
        height: 64%;
        bottom: auto;
    }

    .contest-scene-photo.is-vocalist {
        top: auto;
        width: 100%;
        height: 46%;
        border-top: 1px solid rgba(240, 200, 92, .18);
        border-left: 0;
    }

    .contest-scene-shade {
        background: rgba(4, 4, 3, .66);
    }

    .contest-scene-copy {
        width: calc(100% - 28px);
        padding: 36px 8px;
    }

    .contest-content-zone {
        margin-top: 28px;
    }

    .contest-content-background {
        right: -35%;
        width: 110vw;
        height: 620px;
        opacity: .18;
    }

    .contest-layout {
        width: calc(100% - 22px);
        padding: 34px 0 72px;
    }

    .contest-panel {
        border-radius: 18px;
        padding: 23px 18px;
    }

    .contest-panel:hover {
        transform: none;
    }

    .contest-panel.has-photo::after {
        width: 58%;
        opacity: .13;
    }

    .contest-facts {
        grid-template-columns: 1fr;
    }

    .contest-registration::after {
        display: none;
    }

    .contest-registration-brand {
        width: 74px;
        height: 74px;
    }

    .contest-registration-brand img {
        width: 58px;
        height: 58px;
    }

    .contest-back-to-top {
        right: 12px;
        bottom: 74px;
    }

    .registration-complete-modal {
        padding: 10px;
    }

    .registration-modal-card {
        max-height: calc(100svh - 20px);
        border-radius: 22px;
    }

    .registration-modal-content {
        padding: 52px 18px 30px;
    }

    .registration-modal-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .registration-modal-actions .contest-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contest-public-page,
    .contest-public-page *,
    .contest-public-page *::before,
    .contest-public-page *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .contest-hero-visual {
        transform: scale(1.04);
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
