:root {
    --bg: #f5f5f7;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --line: rgba(0, 0, 0, .08);
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --glass: rgba(255, 255, 255, .72);
    --radius-lg: 34px;
    --radius-md: 24px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .10);
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::selection { background: rgba(0, 113, 227, .18); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; }

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 30;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: min(calc(100% - 28px), 1080px);
    height: 58px;
    padding: 0 10px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 13px; color: #424245; }
.nav-links a, .mini-cta, .music-button { transition: .22s ease; }
.nav-links a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.music-button {
    height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    color: #424245;
    background: rgba(0, 0, 0, .045);
    cursor: pointer;
}
.music-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.music-button[aria-pressed="true"] { color: var(--blue); background: rgba(0, 113, 227, .09); }
.music-button[aria-pressed="true"] svg { animation: musicPulse 1.1s ease-in-out infinite alternate; }
.mini-cta { padding: 9px 15px; color: white; background: var(--blue); border-radius: 12px; font-size: 13px; font-weight: 600; }
.mini-cta:hover { background: var(--blue-hover); }

.hero {
    min-height: 920px;
    padding: 175px 24px 110px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 15%, rgba(255, 255, 255, .95) 0 15%, transparent 44%),
      linear-gradient(180deg, #f9fafc 0%, #f3f3f6 68%, var(--bg) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 760px;
    height: 380px;
    top: 265px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(59, 130, 246, .17), rgba(129, 140, 248, .08) 38%, transparent 72%);
    filter: blur(10px);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 920px; text-align: center; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: #5b5b61; font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.hero h1 { margin: 0; font-size: clamp(58px, 8.5vw, 112px); line-height: .96; letter-spacing: -.065em; font-weight: 750; }
.hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #0071e3 8%, #6759d9 48%, #db4b8c 94%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-copy { max-width: 690px; margin: 34px auto 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.72; letter-spacing: -.01em; }
.hero-buttons { margin-top: 38px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.primary-button, .secondary-button {
    min-height: 48px;
    padding: 0 23px;
    border: 0;
    border-radius: 980px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 16px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-button { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(0, 113, 227, .24); }
.primary-button:hover { transform: translateY(-2px); background: var(--blue-hover); box-shadow: 0 16px 34px rgba(0, 113, 227, .3); }
.primary-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.secondary-button { border: 1px solid rgba(0, 0, 0, .13); color: var(--text); background: rgba(255,255,255,.62); }
.secondary-button:hover { transform: translateY(-2px); background: white; }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .75; }
.hero-orb-a { width: 320px; height: 320px; left: -90px; top: 210px; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.8), rgba(130, 177, 255, .34) 45%, transparent 72%); }
.hero-orb-b { width: 360px; height: 360px; right: -130px; top: 360px; background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.65), rgba(232, 139, 200, .25) 42%, transparent 74%); }

.countdown-card {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    margin-top: 70px;
    padding: 26px 30px 24px;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 28px;
    background: rgba(255, 255, 255, .64);
    box-shadow: var(--shadow);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
}
.countdown-heading { display: flex; align-items: center; justify-content: center; gap: 9px; }
.countdown-heading p { margin: 0; font-size: 14px; font-weight: 650; color: #48484a; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 5px rgba(52,199,89,.12); animation: live 1.4s ease-in-out infinite; }
.countdown { margin-top: 19px; display: grid; grid-template-columns: repeat(4, 1fr); }
.countdown > div { position: relative; display: grid; justify-items: center; gap: 4px; }
.countdown > div:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 7px; height: 51px; width: 1px; background: var(--line); }
.countdown strong { font-size: clamp(34px, 6vw, 58px); line-height: 1; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.countdown span { font-size: 12px; color: var(--muted); }
.event-date { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; font-size: 13px; }

.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.intro { padding: 115px 0 135px; max-width: 930px; text-align: center; }
.intro h2, .section-header h2, .final-content h2 { margin: 0; font-size: clamp(39px, 5.5vw, 68px); line-height: 1.05; letter-spacing: -.052em; }
.intro > p:last-child { max-width: 770px; margin: 30px auto 0; color: var(--muted); font-size: 20px; line-height: 1.8; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-header > p { max-width: 380px; margin: 0 0 7px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.event-section { padding: 40px 0 140px; }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; gap: 20px; }
.feature-card {
    position: relative;
    min-height: 310px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.055);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 18px 50px rgba(0,0,0,.055);
}
.feature-large { grid-row: 1 / 3; min-height: 640px; display: flex; flex-direction: column; justify-content: flex-end; padding: 44px; background:
    radial-gradient(circle at 50% 9%, rgba(103, 127, 255, .26), transparent 30%),
    radial-gradient(circle at 12% 45%, rgba(108, 207, 255, .19), transparent 28%),
    linear-gradient(145deg, #fafbff, #e9eefb);
}
.feature-large::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 54px;
    border: 1px solid rgba(255,255,255,.9);
    background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.12));
    box-shadow: 0 28px 80px rgba(48, 72, 160, .16), inset 0 1px 0 rgba(255,255,255,.9);
    backdrop-filter: blur(9px);
}
.card-icon { position: absolute; z-index: 1; top: 145px; left: 50%; transform: translate(-50%, -50%); width: 108px; height: 108px; border-radius: 30px; display: grid; place-items: center; color: #315bc7; background: rgba(255,255,255,.78); box-shadow: 0 20px 45px rgba(63, 85, 160, .18); }
.card-icon svg { width: 56px; height: 56px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.card-label { position: relative; z-index: 2; margin: 0 0 13px; color: #6e6e73; font-size: 12px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.feature-card h3 { position: relative; z-index: 2; margin: 0; max-width: 600px; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.045em; }
.feature-card > p:not(.card-label) { position: relative; z-index: 2; max-width: 600px; margin: 19px 0 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.chips { position: relative; z-index: 2; margin-top: 25px; display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { padding: 8px 12px; border: 1px solid rgba(0,0,0,.07); border-radius: 980px; background: rgba(255,255,255,.52); color: #48484a; font-size: 12px; }
.card-number { position: absolute; right: 26px; top: 20px; color: rgba(0,0,0,.06); font-size: 72px; font-weight: 750; letter-spacing: -.08em; }
.dark-card { color: white; background: radial-gradient(circle at 85% 5%, rgba(121, 98, 255, .55), transparent 40%), linear-gradient(145deg, #15151a, #272735); }
.dark-card .card-label, .dark-card > p:not(.card-label) { color: rgba(255,255,255,.67); }
.dark-card .card-number { color: rgba(255,255,255,.08); }
.sparkles { position: absolute; right: 42px; bottom: 36px; color: #d8d0ff; font-size: 22px; letter-spacing: 8px; animation: sparkle 2.2s ease-in-out infinite alternate; }

.rewards-section { padding: 130px 0 145px; background: #000; color: #f5f5f7; }
.rewards-section .section-kicker, .rewards-section .section-header > p { color: #86868b; }
.reward-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reward-card { position: relative; min-height: 430px; padding: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 30px; background: linear-gradient(150deg, #1c1c1e, #101011); }
.reward-card.highlight { background: radial-gradient(circle at 70% 20%, rgba(81, 102, 255, .42), transparent 38%), linear-gradient(145deg, #1b1b25, #0f0f12); }
.server-tag { position: relative; z-index: 2; display: inline-block; padding: 7px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 980px; color: #a1a1a6; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.reward-time { position: relative; z-index: 2; margin-top: 46px; display: flex; align-items: end; gap: 8px; }
.reward-time strong { font-size: 96px; line-height: .85; letter-spacing: -.08em; }
.reward-time span { margin-bottom: 7px; color: #a1a1a6; font-size: 16px; }
.reward-card h3 { position: relative; z-index: 2; margin: 38px 0 0; font-size: 31px; letter-spacing: -.04em; }
.reward-card p { position: relative; z-index: 2; margin: 13px 0 0; color: #a1a1a6; line-height: 1.65; }
.reward-glow { position: absolute; width: 260px; height: 260px; right: -100px; bottom: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(43, 112, 255, .55), transparent 67%); filter: blur(5px); }
.reward-card:nth-child(1) .reward-glow { background: radial-gradient(circle, rgba(240, 91, 141, .48), transparent 67%); }
.reward-card:nth-child(3) .reward-glow { background: radial-gradient(circle, rgba(52, 199, 89, .42), transparent 67%); }

.gallery-section { padding: 135px 0 150px; }
.gallery-window { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent); }
.gallery-track { width: max-content; display: flex; gap: 18px; padding: 10px 9px 28px; will-change: transform; }
.gallery-track.is-animated { animation: galleryScroll var(--gallery-duration, 38s) linear infinite; }
.gallery-window:hover .gallery-track { animation-play-state: paused; }
.gallery-item { position: relative; width: min(72vw, 520px); height: 355px; margin: 0; flex: 0 0 auto; overflow: hidden; border-radius: 28px; background: #e6e6e8; box-shadow: 0 16px 40px rgba(0,0,0,.11); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.gallery-item figcaption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 22px; display: grid; gap: 5px; color: white; }
.gallery-item figcaption strong { font-size: 20px; }
.gallery-item figcaption span { color: rgba(255,255,255,.76); font-size: 13px; }
.gallery-empty { min-height: 330px; display: grid; place-items: center; align-content: center; text-align: center; border: 1px dashed rgba(0,0,0,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.45); }
.empty-icon { width: 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; background: white; box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.empty-icon svg { width: 33px; height: 33px; fill: none; stroke: #6e6e73; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.gallery-empty h3 { margin: 20px 0 0; font-size: 25px; letter-spacing: -.035em; }
.gallery-empty p { margin: 9px 20px 0; color: var(--muted); }

.final-cta { margin: 0 20px 20px; min-height: 700px; display: grid; place-items: center; overflow: hidden; border-radius: 38px; color: white; background: radial-gradient(circle at 50% 25%, rgba(78, 108, 255, .52), transparent 31%), radial-gradient(circle at 15% 88%, rgba(0, 190, 255, .22), transparent 30%), radial-gradient(circle at 88% 80%, rgba(220, 68, 157, .22), transparent 30%), #08080a; }
.final-content { max-width: 900px; padding: 90px 25px; text-align: center; }
.final-content img { width: 88px; height: 88px; margin-bottom: 25px; object-fit: contain; filter: drop-shadow(0 14px 28px rgba(0,0,0,.26)); }
.final-content .section-kicker { color: rgba(255,255,255,.55); }
.final-content p:not(.section-kicker) { margin: 25px 0 32px; color: rgba(255,255,255,.68); font-size: 19px; }
.light-button { color: #09090b; background: white; box-shadow: 0 16px 38px rgba(0,0,0,.24); }
.light-button:hover { color: #09090b; background: #f5f5f7; }
.site-footer { padding: 38px 20px 50px; color: #86868b; text-align: center; font-size: 12px; line-height: 1.55; }
.site-footer p { margin: 4px 0; }
.secret-admin { position: fixed; right: 7px; bottom: 7px; z-index: 40; width: 18px; height: 18px; border-radius: 50%; opacity: .035; background: #000; transition: opacity .2s; }
.secret-admin:hover, .secret-admin:focus-visible { opacity: .45; outline: 2px solid var(--blue); outline-offset: 2px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.admin-body { min-height: 100vh; background: radial-gradient(circle at 50% 0%, #fff, #f2f3f7 42%, #eceef4); }
.admin-shell { width: min(calc(100% - 32px), 980px); margin: 0 auto; padding: 32px 0 80px; }
.admin-brand { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 650; }
.admin-brand img { width: 40px; height: 40px; object-fit: contain; }
.login-panel, .upload-panel, .manage-panel { margin-top: 80px; padding: 42px; border: 1px solid rgba(255,255,255,.8); border-radius: 32px; background: rgba(255,255,255,.72); box-shadow: var(--shadow); backdrop-filter: blur(24px); }
.login-panel { max-width: 560px; margin-left: auto; margin-right: auto; }
.login-panel h1, .admin-header h1 { margin: 0; font-size: clamp(38px, 6vw, 62px); letter-spacing: -.055em; }
.login-panel > p:not(.section-kicker), .admin-header p { color: var(--muted); line-height: 1.65; }
.admin-form { margin-top: 30px; display: grid; gap: 20px; }
.admin-form label { display: grid; gap: 8px; color: #3a3a3c; font-size: 13px; font-weight: 650; }
.admin-form input[type="text"], .admin-form input[type="password"] { width: 100%; height: 50px; padding: 0 15px; border: 1px solid rgba(0,0,0,.12); border-radius: 14px; outline: none; background: rgba(255,255,255,.85); transition: border .2s, box-shadow .2s; }
.admin-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,113,227,.11); }
.admin-submit { justify-self: start; }
.flash { margin-top: 24px; padding: 14px 17px; border-radius: 14px; font-size: 14px; }
.flash.success { color: #126b2d; background: #e7f8ec; }
.flash.error { color: #9e2525; background: #feeaea; }
.admin-header { margin-top: 65px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.upload-panel, .manage-panel { margin-top: 34px; }
.upload-panel h2, .manage-panel h2 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.file-drop { position: relative; min-height: 150px; padding: 28px; place-items: center; align-content: center; border: 1.5px dashed rgba(0,0,0,.19); border-radius: 22px; background: rgba(246,247,250,.8); text-align: center; cursor: pointer; }
.file-drop:hover { border-color: var(--blue); background: rgba(0,113,227,.035); }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-title { font-size: 17px; color: var(--text); }
.file-note { color: var(--muted); font-size: 12px; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; }
.manage-title { display: flex; align-items: center; justify-content: space-between; }
.manage-title span { color: var(--muted); font-size: 13px; }
.admin-gallery { margin-top: 22px; display: grid; gap: 12px; }
.admin-photo { min-height: 112px; padding: 10px 12px 10px 10px; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.74); }
.admin-photo img { width: 150px; height: 92px; object-fit: cover; border-radius: 12px; }
.admin-photo h3 { margin: 0; font-size: 17px; }
.admin-photo p { margin: 5px 0; color: var(--muted); font-size: 13px; }
.admin-photo time { color: #9a9aa0; font-size: 11px; }
.delete-button { padding: 8px 12px; border: 0; border-radius: 10px; color: #c82f2f; background: #feeaea; cursor: pointer; }
.delete-button:hover { background: #ffdede; }
.admin-empty { margin-top: 22px; padding: 45px; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; }

@keyframes live { 50% { transform: scale(.7); opacity: .55; } }
@keyframes musicPulse { to { transform: translateY(-1px) rotate(-4deg); } }
@keyframes sparkle { to { opacity: .45; transform: translateY(-8px); } }
@keyframes galleryScroll { to { transform: translateX(calc(-50% - 9px)); } }

@media (max-width: 860px) {
    .nav-links { display: none; }
    .hero { min-height: 860px; padding-top: 150px; }
    .section-header { align-items: start; flex-direction: column; gap: 18px; }
    .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .feature-large { grid-row: auto; min-height: 600px; }
    .reward-grid { grid-template-columns: 1fr; }
    .reward-card { min-height: 340px; }
    .reward-time { margin-top: 35px; }
    .reward-time strong { font-size: 78px; }
}

@media (max-width: 600px) {
    .site-header { top: 8px; height: 54px; width: calc(100% - 16px); border-radius: 16px; }
    .brand span, .music-button span { display: none; }
    .music-button { width: 38px; justify-content: center; padding: 0; }
    .mini-cta { padding-inline: 13px; }
    .hero { min-height: 810px; padding: 135px 18px 80px; }
    .hero h1 { font-size: clamp(50px, 16vw, 70px); }
    .hero-copy { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: min(100%, 280px); }
    .countdown-card { margin-top: 52px; padding: 22px 14px 20px; border-radius: 24px; }
    .countdown strong { font-size: 34px; }
    .countdown > div:not(:last-child)::after { height: 40px; }
    .event-date { font-size: 11px; }
    .section-shell { width: min(calc(100% - 28px), var(--max)); }
    .intro { padding: 90px 0 105px; }
    .intro > p:last-child { font-size: 17px; }
    .event-section { padding-bottom: 100px; }
    .feature-card, .feature-large { padding: 28px; border-radius: 26px; }
    .feature-large { min-height: 540px; }
    .feature-large::before { width: 210px; height: 210px; top: 70px; }
    .card-icon { top: 135px; width: 88px; height: 88px; }
    .card-icon svg { width: 46px; height: 46px; }
    .rewards-section { padding: 100px 0; }
    .gallery-section { padding: 105px 0; }
    .gallery-item { width: 84vw; height: 290px; border-radius: 23px; }
    .final-cta { margin: 0 10px 10px; min-height: 610px; border-radius: 28px; }
    .admin-shell { width: min(calc(100% - 20px), 980px); padding-top: 18px; }
    .login-panel, .upload-panel, .manage-panel { padding: 24px; border-radius: 24px; }
    .admin-header { align-items: start; flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .admin-photo { grid-template-columns: 90px 1fr; gap: 12px; }
    .admin-photo img { width: 90px; height: 76px; }
    .admin-photo form { grid-column: 1 / -1; }
    .delete-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
