:root {
	--color-bg: #fff8e8;
	--color-surface: #ffffff;
	--color-text: #10213f;
	--color-muted: #566171;
	--color-brand: #ff4b2e;
	--color-accent: #f5d90a;
	--color-blue: #0879df;
	--color-pink: #e8308c;
	--color-green: #4bc87c;
	--color-border: #10213f;
	--color-dark: #0b1830;
	--font-main: "Noto Sans TC", sans-serif;
	--container-wide: 1360px;
	--container-main: 1160px;
	--header-height: 78px;
	--section-space: 120px;
	--text-caption: 14px;
	--text-small: 15px;
	--text-base: 17px;
	--text-lead: 19px;
	--line-base: 1.78;
	--shadow-hard: 7px 7px 0 #10213f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { margin: 0; overflow-x: hidden; background: var(--color-bg); color: var(--color-text); font-family: var(--font-main); font-size: var(--text-base); font-weight: 400; line-height: var(--line-base); text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.is-menu-open { overflow: hidden; }

img { display: block; width: 100%; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

p { overflow-wrap: break-word; }

::selection { background: var(--color-accent); color: var(--color-dark); }

.skip-link { position: fixed; top: -100px; left: 20px; z-index: 999; padding: 10px 18px; background: var(--color-dark); color: #ffffff; font-size: 16px; }
.skip-link:focus { top: 14px; }

/* header */
header { position: fixed; top: 0; left: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: var(--header-height); padding: 13px clamp(20px, 4vw, 60px); border-bottom: 3px solid transparent; transition: min-height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease; }
header.is-scrolled { min-height: 66px; background: rgba(255, 248, 232, 0.97); border-color: var(--color-border); }
header .brand-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 11px; }
header h1 { margin: 0; color: #ffffff; font-size: clamp(21px, 1.8vw, 26px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.2; text-shadow: 3px 3px 0 var(--color-dark); transition: color 0.25s ease, text-shadow 0.25s ease; }
header.is-scrolled h1 { color: var(--color-dark); text-shadow: none; }
header .brand-mark { display: inline-grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; overflow: hidden; transform: rotate(-6deg); }
header .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
header .site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 32px); color: #ffffff; font-size: 16px; font-weight: 700; line-height: 1.5; transition: color 0.25s ease; }
header.is-scrolled .site-nav { color: var(--color-text); }
header .site-nav a { position: relative; padding: 7px 0; white-space: nowrap; }
header .site-nav a::after { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--color-accent); content: ""; transition: width 0.2s ease; }
header .site-nav a:hover::after, header .site-nav a:focus-visible::after { width: 100%; }
header .nav-action { padding: 10px 17px; transform: rotate(1deg); border: 2px solid var(--color-dark); background: var(--color-accent); color: var(--color-dark); font-size: 15px; box-shadow: 4px 4px 0 var(--color-dark); }
header .nav-action::after { display: none; }
header .nav-action:hover, header .nav-action:focus-visible { transform: translate(2px, 2px) rotate(1deg); box-shadow: 2px 2px 0 var(--color-dark); }
header .menu-toggle { position: relative; z-index: 3; display: none; width: 46px; height: 42px; padding: 0; border: 2px solid var(--color-dark); background: var(--color-accent); color: var(--color-dark); cursor: pointer; box-shadow: 3px 3px 0 var(--color-dark); }
header .menu-toggle span { position: absolute; left: 10px; width: 22px; height: 3px; background: currentColor; transition: top 0.2s ease, transform 0.2s ease, opacity 0.2s ease; }
header .menu-toggle span:first-child { top: 12px; }
header .menu-toggle span:nth-child(2) { top: 19px; }
header .menu-toggle span:last-child { top: 26px; }
header .menu-toggle.is-active span:first-child { top: 19px; transform: rotate(45deg); }
header .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
header .menu-toggle.is-active span:last-child { top: 19px; transform: rotate(-45deg); }
main { display: block; }

/* hero */
#hero-section { position: relative; min-height: 770px; overflow: hidden; background: var(--color-dark); color: #ffffff; }
#hero-section .hero-media { position: absolute; inset: 0; }
#hero-section .hero-image { height: 100%; object-fit: cover; object-position: 55% 48%; filter: saturate(1.12) contrast(1.03); transform: scale(1.035); transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
#hero-section.is-visible .hero-image { transform: scale(1); }
#hero-section .hero-overlay { position: absolute; inset: 0; background: linear-gradient( 90deg, rgba(8, 20, 43, 0.96) 0%, rgba(8, 20, 43, 0.76) 42%, rgba(8, 20, 43, 0.12) 79% ), linear-gradient(0deg, rgba(8, 20, 43, 0.86) 0%, transparent 46%); }
#hero-section .hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; width: min(100% - 48px, var(--container-wide)); min-height: 770px; margin: 0 auto; padding: 146px 0 72px; }
#hero-section .hero-kicker { display: flex; align-items: center; gap: 13px; margin: 0 0 18px; color: var(--color-accent); font-size: 15px; font-weight: 800; letter-spacing: 0.08em; line-height: 1.6; }
#hero-section .hero-kicker::before { width: 0; height: 4px; flex: 0 0 auto; background: var(--color-accent); content: ""; transition: width 0.6s ease 0.15s; }
#hero-section.is-visible .hero-kicker::before { width: 44px; }
#hero-section .hero-title-wrap { max-width: 930px; overflow: hidden; }
#hero-section .hero-title { margin: 0; transform: translateY(110%); font-size: clamp(58px, 7.6vw, 112px); font-weight: 900; letter-spacing: -0.075em; line-height: 1.1; text-wrap: balance; transition: transform 0.8s cubic-bezier(0.18, 0.78, 0.22, 1) 0.05s; }
#hero-section.is-visible .hero-title { transform: translateY(0); }
#hero-section .hero-title em { color: var(--color-accent); font-style: normal; text-shadow: 5px 5px 0 var(--color-brand); }
#hero-section .hero-bottom { display: grid; grid-template-columns: minmax(320px, 620px) auto; align-items: end; gap: 50px; margin-top: 31px; }
#hero-section .hero-description { max-width: 620px; margin: 0; color: rgba(255, 255, 255, 0.9); font-size: clamp(17px, 1.3vw, 20px); font-weight: 500; line-height: 1.8; }
#hero-section .hero-actions { display: flex; align-items: center; gap: 17px; justify-self: end; white-space: nowrap; }
#hero-section .hero-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; transform: rotate(-1deg); border: 3px solid var(--color-dark); background: var(--color-accent); color: var(--color-dark); font-size: 16px; font-weight: 900; line-height: 1.5; box-shadow: 6px 6px 0 var(--color-brand); transition: transform 0.2s ease, box-shadow 0.2s ease; }
#hero-section .hero-primary:hover, #hero-section .hero-primary:focus-visible { transform: translate(3px, 3px) rotate(-1deg); box-shadow: 3px 3px 0 var(--color-brand); }
#hero-section .hero-secondary { padding: 10px 3px 8px; border-bottom: 3px solid var(--color-accent); font-size: 16px; font-weight: 700; }
#hero-section .hero-scoreboard { position: absolute; top: 122px; right: clamp(24px, 5vw, 76px); z-index: 2; display: grid; grid-template-columns: repeat(2, auto); transform: rotate(2deg); border: 3px solid var(--color-dark); background: var(--color-surface); color: var(--color-text); box-shadow: 7px 7px 0 var(--color-pink); }
#hero-section .hero-scoreboard span { padding: 10px 14px; border-right: 2px solid var(--color-dark); font-size: 14px; font-weight: 800; line-height: 1.45; }
#hero-section .hero-scoreboard strong { padding: 10px 14px; background: var(--color-accent); font-size: 14px; font-weight: 900; line-height: 1.45; }
#hero-section .hero-ticker { position: absolute; right: -60px; bottom: 46px; z-index: 3; display: flex; gap: 34px; width: 610px; padding: 10px 20px; transform: rotate(-5deg); border-block: 3px solid var(--color-dark); background: var(--color-brand); color: #ffffff; font-size: 14px; font-weight: 900; line-height: 1.5; white-space: nowrap; }
#hero-section .hero-ticker span::before { margin-right: 34px; color: var(--color-accent); content: "✦"; }

/* chaos */
#chaos-section { position: relative; padding: var(--section-space) 0 112px; background: var(--color-bg); }
#chaos-section .chaos-layout { display: grid; grid-template-columns: minmax(320px, 0.82fr) minmax(470px, 1.18fr); align-items: center; gap: clamp(54px, 7vw, 110px); width: min(100% - 48px, var(--container-main)); margin: 0 auto; }
#chaos-section .chaos-copy { position: relative; z-index: 2; }
#chaos-section .chaos-label { display: inline-block; margin-bottom: 24px; padding: 7px 12px; transform: rotate(-2deg); border: 2px solid var(--color-dark); background: var(--color-green); font-size: 14px; font-weight: 900; line-height: 1.5; box-shadow: 4px 4px 0 var(--color-dark); }
#chaos-section .chaos-title { max-width: 560px; margin: 0; font-size: clamp(42px, 4.6vw, 68px); font-weight: 900; letter-spacing: -0.06em; line-height: 1.08; text-wrap: balance; }
#chaos-section .chaos-title span { display: block; margin-top: 7px; color: var(--color-brand); }
#chaos-section .chaos-text { max-width: 500px; margin: 28px 0 0; color: var(--color-muted); font-size: 17px; line-height: 1.85; }
#chaos-section .chaos-quote { max-width: 420px; margin: 40px 0 0 auto; padding: 18px 0 0 22px; border-top: 3px solid var(--color-dark); border-left: 7px solid var(--color-accent); font-size: 18px; font-weight: 800; line-height: 1.7; }
#chaos-section .chaos-media { position: relative; min-height: 610px; }
#chaos-section .chaos-figure { position: absolute; top: 0; right: 0; width: 92%; margin: 0; border: 3px solid var(--color-dark); background: var(--color-blue); box-shadow: 12px 12px 0 var(--color-dark); }
#chaos-section .chaos-image { aspect-ratio: 1.28 / 1; object-fit: cover; object-position: 53% 54%; }
#chaos-section .chaos-caption { display: flex; justify-content: space-between; gap: 18px; padding: 11px 14px; color: #ffffff; font-size: 14px; font-weight: 800; line-height: 1.55; }
#chaos-section .chaos-sticker { position: absolute; left: -20px; bottom: 42px; width: 190px; padding: 17px; transform: rotate(-7deg); border: 3px solid var(--color-dark); background: var(--color-accent); font-size: 17px; font-weight: 900; line-height: 1.5; box-shadow: 6px 6px 0 var(--color-brand); }
#chaos-section .chaos-sticker small { display: block; margin-top: 6px; font-size: 14px; font-weight: 700; line-height: 1.55; }

/* match */
#match-section { padding: 108px 0; border-block: 3px solid var(--color-dark); background: var(--color-surface); }
#match-section .match-header { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: end; gap: 64px; width: min(100% - 48px, var(--container-main)); margin: 0 auto 52px; }
#match-section .match-title { margin: 0; font-size: clamp(50px, 5.7vw, 84px); font-weight: 900; letter-spacing: -0.07em; line-height: 0.96; }
#match-section .match-intro { max-width: 520px; margin: 0 0 4px auto; color: var(--color-muted); font-size: 17px; line-height: 1.85; }
#match-section .match-list { border-top: 3px solid var(--color-dark); }
#match-section .match-item { position: relative; display: grid; grid-template-columns: minmax(100px, 0.25fr) minmax(260px, 0.9fr) minmax( 310px, 1fr ) auto; align-items: center; gap: 32px; min-height: 144px; padding: 27px max(24px, calc((100vw - var(--container-main)) / 2)); border-bottom: 3px solid var(--color-dark); overflow: hidden; transition: color 0.25s ease; }
#match-section .match-item::before { position: absolute; inset: 0; z-index: 0; transform: translateX(-101%); background: var(--item-color); content: ""; transition: transform 0.38s cubic-bezier(0.2, 0.7, 0.2, 1); }
#match-section .match-item:hover::before, #match-section .match-item:focus-within::before { transform: translateX(0); }
#match-section .match-item > * { position: relative; z-index: 1; }
#match-section .match-meta { font-size: 14px; font-weight: 900; letter-spacing: 0.05em; line-height: 1.5; }
#match-section .match-name { margin: 0; font-size: clamp(25px, 2.55vw, 38px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.22; }
#match-section .match-text { margin: 0; color: var(--color-muted); font-size: 16px; line-height: 1.78; transition: color 0.25s ease; }
#match-section .match-item:hover .match-text { color: var(--color-dark); }
#match-section .match-arrow { display: grid; width: 50px; height: 50px; place-items: center; border: 3px solid var(--color-dark); background: var(--color-surface); font-size: 22px; font-weight: 900; box-shadow: 4px 4px 0 var(--color-dark); }
#match-section .match-item:nth-child(1) { --item-color: #f5d90a; }
#match-section .match-item:nth-child(2) { --item-color: #ff765e; }
#match-section .match-item:nth-child(3) { --item-color: #6dd5ff; }
#match-section .match-item:nth-child(4) { --item-color: #78dd9e; }

/* arena */
#arena-section { position: relative; padding: 118px 0 138px; overflow: hidden; background: var(--color-blue); color: #ffffff; }
#arena-section .arena-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; width: min(100% - 48px, var(--container-main)); margin: 0 auto 54px; }
#arena-section .arena-title { max-width: 710px; margin: 0; font-size: clamp(46px, 5.3vw, 80px); font-weight: 900; letter-spacing: -0.065em; line-height: 1.02; text-wrap: balance; }
#arena-section .arena-title em { color: var(--color-accent); font-style: normal; }
#arena-section .arena-note { max-width: 340px; margin: 0 0 7px; padding: 16px 18px; transform: rotate(2deg); border: 3px solid var(--color-dark); background: var(--color-surface); color: var(--color-dark); font-size: 16px; font-weight: 800; line-height: 1.7; box-shadow: 6px 6px 0 var(--color-pink); }
#arena-section .arena-collage { position: relative; width: min(100% - 48px, 1320px); min-height: 760px; margin: 0 auto; }
#arena-section .arena-figure { position: absolute; margin: 0; border: 3px solid var(--color-dark); background: var(--color-surface); color: var(--color-dark); box-shadow: 8px 8px 0 var(--color-dark); }
#arena-section .arena-figure img { transition: transform 0.5s ease; }
#arena-section .arena-figure:hover img { transform: scale(1.025); }
#arena-section .arena-figure-one { top: 0; left: 0; width: 60%; transform: rotate(-1deg); }
#arena-section .arena-figure-two { top: 104px; right: 0; width: 40%; transform: rotate(2deg); }
#arena-section .arena-figure-three { right: 15%; bottom: 0; width: 47%; transform: rotate(-2deg); }
#arena-section .arena-figure-one img { aspect-ratio: 1.58 / 1; object-fit: cover; object-position: center; }
#arena-section .arena-figure-two img { aspect-ratio: 0.98 / 1; object-fit: cover; object-position: 47% center; }
#arena-section .arena-figure-three img { aspect-ratio: 1.65 / 1; object-fit: cover; object-position: center; }
#arena-section .arena-caption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 14px; font-size: 14px; font-weight: 900; line-height: 1.55; }
#arena-section .arena-caption span:last-child { color: var(--color-brand); }
#arena-section .arena-warning { position: absolute; left: 5%; bottom: 86px; z-index: 3; max-width: 210px; padding: 17px; transform: rotate(7deg); border: 3px solid var(--color-dark); background: var(--color-accent); color: var(--color-dark); font-size: 16px; font-weight: 900; line-height: 1.65; box-shadow: 5px 5px 0 var(--color-brand); }

/* roster */
#roster-section { padding: 118px 0; background: var(--color-accent); }
#roster-section .roster-layout { display: grid; grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr); gap: clamp(58px, 8vw, 120px); width: min(100% - 48px, var(--container-main)); margin: 0 auto; }
#roster-section .roster-copy { align-self: start; }
#roster-section .roster-kicker { margin: 0 0 17px; font-size: 14px; font-weight: 900; letter-spacing: 0.08em; line-height: 1.55; }
#roster-section .roster-title { margin: 0; font-size: clamp(44px, 4.8vw, 72px); font-weight: 900; letter-spacing: -0.065em; line-height: 1.04; text-wrap: balance; }
#roster-section .roster-text { max-width: 450px; margin: 27px 0 0; font-size: 17px; font-weight: 600; line-height: 1.85; }
#roster-section .roster-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 32px; padding-bottom: 6px; border-bottom: 3px solid var(--color-dark); font-size: 16px; font-weight: 900; line-height: 1.5; }
#roster-section .roster-list { border-top: 3px solid var(--color-dark); }
#roster-section .roster-item { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 22px; min-height: 120px; padding: 21px 0; border-bottom: 3px solid var(--color-dark); transition: padding-inline 0.25s ease, background-color 0.25s ease; }
#roster-section .roster-item:hover { padding-inline: 16px; background: rgba(255, 255, 255, 0.42); }
#roster-section .roster-symbol { display: grid; width: 56px; height: 56px; place-items: center; transform: rotate(-4deg); border: 3px solid var(--color-dark); background: var(--symbol-color); font-size: 22px; font-weight: 900; box-shadow: 4px 4px 0 var(--color-dark); }
#roster-section .roster-body h3 { margin: 0 0 5px; font-size: 22px; font-weight: 900; line-height: 1.4; }
#roster-section .roster-body p { margin: 0; color: #394250; font-size: 15px; line-height: 1.75; }
#roster-section .roster-trait { font-size: 14px; font-weight: 900; line-height: 1.5; text-align: right; white-space: nowrap; }
#roster-section .roster-item:nth-child(1) { --symbol-color: #ff765e; }
#roster-section .roster-item:nth-child(2) { --symbol-color: #6dd5ff; }
#roster-section .roster-item:nth-child(3) { --symbol-color: #78dd9e; }
#roster-section .roster-item:nth-child(4) { --symbol-color: #f58dc3; }

/* rules */
#rules-section { padding: 118px 0; background: var(--color-bg); }
#rules-section .rules-header { width: min(100% - 48px, var(--container-main)); margin: 0 auto 62px; }
#rules-section .rules-title { max-width: 840px; margin: 0; font-size: clamp(48px, 5.7vw, 84px); font-weight: 900; letter-spacing: -0.07em; line-height: 1; }
#rules-section .rules-title span { color: var(--color-brand); }
#rules-section .rules-list { position: relative; width: min(100% - 48px, 960px); margin: 0 auto; }
#rules-section .rules-list::before { position: absolute; top: 0; bottom: 0; left: 116px; width: 3px; transform: scaleY(0); transform-origin: top; background: var(--color-dark); content: ""; transition: transform 0.8s ease; }
#rules-section.is-visible .rules-list::before { transform: scaleY(1); }
#rules-section .rules-item { display: grid; grid-template-columns: 88px 1fr; gap: 58px; padding: 34px 0; }
#rules-section .rules-time { padding-top: 6px; font-size: 14px; font-weight: 900; line-height: 1.5; text-align: right; }
#rules-section .rules-body { position: relative; padding: 0 0 32px 32px; border-bottom: 2px solid var(--color-dark); }
#rules-section .rules-body::before { position: absolute; top: 10px; left: -39px; width: 13px; height: 13px; border: 3px solid var(--color-dark); background: var(--dot-color); content: ""; }
#rules-section .rules-body h3 { margin: 0 0 10px; font-size: clamp(24px, 2.3vw, 34px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.35; }
#rules-section .rules-body p { max-width: 680px; margin: 0; color: var(--color-muted); font-size: 16px; line-height: 1.85; }
#rules-section .rules-item:nth-child(1) { --dot-color: #f5d90a; }
#rules-section .rules-item:nth-child(2) { --dot-color: #ff765e; }
#rules-section .rules-item:nth-child(3) { --dot-color: #6dd5ff; }
#rules-section .rules-item:nth-child(4) { --dot-color: #78dd9e; }

/* cta */
#cta-section { position: relative; display: flex; min-height: 630px; align-items: center; overflow: hidden; background: var(--color-dark); color: #ffffff; }
#cta-section .cta-media { position: absolute; inset: 0; }
#cta-section .cta-image { height: 100%; object-fit: cover; object-position: 55% 48%; }
#cta-section .cta-overlay { position: absolute; inset: 0; background: linear-gradient( 90deg, rgba(9, 22, 46, 0.97) 0%, rgba(9, 22, 46, 0.82) 48%, rgba(9, 22, 46, 0.2) 100% ); }
#cta-section .cta-content { position: relative; z-index: 2; width: min(100% - 48px, var(--container-main)); margin: 0 auto; padding: 98px 0; }
#cta-section .cta-eyebrow { margin: 0 0 18px; color: var(--color-accent); font-size: 14px; font-weight: 900; letter-spacing: 0.08em; line-height: 1.55; }
#cta-section .cta-title { max-width: 840px; margin: 0; font-size: clamp(50px, 6.5vw, 98px); font-weight: 900; letter-spacing: -0.075em; line-height: 0.96; text-wrap: balance; }
#cta-section .cta-title span { color: var(--color-accent); text-shadow: 5px 5px 0 var(--color-brand); }
#cta-section .cta-row { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
#cta-section .cta-link { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; transform: rotate(-1deg); border: 3px solid var(--color-dark); background: var(--color-accent); color: var(--color-dark); font-size: 16px; font-weight: 900; line-height: 1.5; box-shadow: 7px 7px 0 var(--color-brand); transition: transform 0.2s ease, box-shadow 0.2s ease; }
#cta-section .cta-link:hover, #cta-section .cta-link:focus-visible { transform: translate(4px, 4px) rotate(-1deg); box-shadow: 3px 3px 0 var(--color-brand); }
#cta-section .cta-note { max-width: 360px; margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 15px; line-height: 1.8; }

/* footer */
footer { padding: 46px max(24px, calc((100vw - var(--container-main)) / 2)); border-top: 3px solid var(--color-dark); background: var(--color-accent); color: var(--color-dark); }
footer .footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; }
footer .footer-brand { max-width: 500px; }
footer .footer-logo { display: block; margin-bottom: 12px; font-size: 27px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.35; }
footer .footer-text { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.8; }
footer .footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 26px; font-size: 15px; font-weight: 800; line-height: 1.5; }
footer .footer-nav a { border-bottom: 2px solid transparent; }
footer .footer-nav a:hover, footer .footer-nav a:focus-visible { border-color: var(--color-dark); }
footer .footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 40px; padding-top: 18px; border-top: 2px solid var(--color-dark); font-size: 14px; font-weight: 700; line-height: 1.7; }

.reveal-block { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-block.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
	:root { --container-main: 1040px; --section-space: 110px; }
	#hero-section .hero-content { width: min(100% - 56px, 1220px); }
	#hero-section .hero-scoreboard { right: 28px; }
	#chaos-section .chaos-layout { grid-template-columns: minmax(290px, 0.82fr) minmax(420px, 1.18fr); gap: 66px; }
	#chaos-section .chaos-media { min-height: 560px; }
	#arena-section .arena-collage { min-height: 680px; }
	#arena-section .arena-figure-two { width: 42%; }
	#roster-section .roster-layout { gap: 76px; }
}
@media (max-width: 960px) {
	:root { --header-height: 70px; --section-space: 94px; }
	header { padding-inline: 22px; }
	header .menu-toggle { display: block; }
	header .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 20px; padding: 90px 30px 40px; transform: translateX(100%); background: var(--color-accent); color: var(--color-dark); font-size: clamp(27px, 6vw, 42px); line-height: 1.35; transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
	header .site-nav.is-open { transform: translateX(0); }
	header .site-nav a { font-weight: 900; white-space: normal; }
	header .nav-action { margin-top: 10px; background: var(--color-brand); color: #ffffff; font-size: 20px; }
	#hero-section, #hero-section .hero-content { min-height: 730px; }
	#hero-section .hero-content { width: min(100% - 44px, 880px); padding: 138px 0 64px; }
	#hero-section .hero-overlay { background: linear-gradient( 90deg, rgba(8, 20, 43, 0.95) 0%, rgba(8, 20, 43, 0.68) 67%, rgba(8, 20, 43, 0.18) 100% ), linear-gradient(0deg, rgba(8, 20, 43, 0.9) 0%, transparent 50%); }
	#hero-section .hero-scoreboard { top: 102px; right: 22px; }
	#hero-section .hero-title { font-size: clamp(55px, 10.5vw, 94px); }
	#hero-section .hero-bottom { grid-template-columns: 1fr; gap: 25px; }
	#hero-section .hero-actions { justify-self: start; }
	#hero-section .hero-ticker { bottom: 30px; opacity: 0.94; }
	#chaos-section { padding-block: 94px; }
	#chaos-section .chaos-layout { grid-template-columns: 1fr; gap: 48px; }
	#chaos-section .chaos-title { max-width: 720px; }
	#chaos-section .chaos-text { max-width: 660px; }
	#chaos-section .chaos-quote { margin-left: 0; }
	#chaos-section .chaos-media { min-height: 560px; }
	#chaos-section .chaos-figure { width: 94%; }
	#match-section { padding-top: 92px; }
	#match-section .match-header { grid-template-columns: 1fr; gap: 23px; }
	#match-section .match-intro { margin-left: 0; }
	#match-section .match-item { grid-template-columns: 84px minmax(220px, 0.8fr) 1fr 50px; gap: 20px; padding-inline: 22px; }
	#arena-section { padding-block: 96px 118px; }
	#arena-section .arena-header { align-items: flex-start; flex-direction: column; gap: 30px; }
	#arena-section .arena-collage { min-height: 650px; }
	#arena-section .arena-figure-one { width: 68%; }
	#arena-section .arena-figure-two { top: 158px; width: 44%; }
	#arena-section .arena-figure-three { right: 10%; width: 54%; }
	#roster-section { padding-block: 96px; }
	#roster-section .roster-layout { grid-template-columns: 1fr; gap: 52px; }
	#roster-section .roster-text { max-width: 660px; }
	#rules-section { padding-block: 96px; }
	#cta-section { min-height: 590px; }
}
@media (max-width: 768px) {
	body { font-size: 16px; }
	#hero-section, #hero-section .hero-content { min-height: 690px; }
	#hero-section .hero-content { justify-content: center; padding-top: 176px; padding-bottom: 100px; }
	#hero-section .hero-image { object-position: 60% center; }
	#hero-section .hero-scoreboard { top: 92px; left: 20px; right: auto; }
	#hero-section .hero-title { max-width: 640px; font-size: clamp(50px, 14vw, 86px); line-height: 0.97; }
	#hero-section .hero-description { max-width: 570px; font-size: 17px; }
	#hero-section .hero-ticker { right: -170px; bottom: 24px; }
	#chaos-section .chaos-layout, #match-section .match-header, #arena-section .arena-header, #roster-section .roster-layout, #rules-section .rules-header, #cta-section .cta-content { width: min(100% - 34px, var(--container-main)); }
	#chaos-section .chaos-title { font-size: clamp(40px, 9.5vw, 62px); }
	#chaos-section .chaos-text { font-size: 16px; }
	#chaos-section .chaos-media { min-height: 490px; }
	#chaos-section .chaos-figure { width: calc(100% - 16px); }
	#chaos-section .chaos-sticker { left: -2px; bottom: 14px; width: 170px; font-size: 16px; }
	#match-section .match-title { font-size: clamp(46px, 11vw, 70px); }
	#match-section .match-item { grid-template-columns: 62px 1fr 48px; min-height: 134px; gap: 17px; padding-block: 23px; }
	#match-section .match-meta { grid-row: span 2; }
	#match-section .match-name { font-size: clamp(24px, 5vw, 32px); }
	#match-section .match-text { grid-column: 2 / 3; font-size: 15px; }
	#match-section .match-arrow { grid-column: 3; grid-row: 1 / span 2; width: 46px; height: 46px; }
	#arena-section .arena-title { font-size: clamp(43px, 10.5vw, 68px); }
	#arena-section .arena-collage { display: flex; flex-direction: column; gap: 28px; min-height: 0; width: min(100% - 34px, 720px); }
	#arena-section .arena-figure { position: relative; inset: auto; width: 92%; }
	#arena-section .arena-figure-one { align-self: flex-start; }
	#arena-section .arena-figure-two { align-self: flex-end; }
	#arena-section .arena-figure-three { align-self: center; }
	#arena-section .arena-figure-two img { aspect-ratio: 1.35 / 1; }
	#arena-section .arena-warning { position: relative; left: auto; bottom: auto; margin: 26px 0 0 20px; }
	#roster-section .roster-title { font-size: clamp(42px, 10vw, 66px); }
	#roster-section .roster-item { grid-template-columns: 62px 1fr; gap: 17px; }
	#roster-section .roster-trait { grid-column: 2; text-align: left; }
	#rules-section .rules-title { font-size: clamp(44px, 11vw, 70px); }
	#rules-section .rules-list { width: min(100% - 34px, 720px); }
	#rules-section .rules-list::before { left: 19px; }
	#rules-section .rules-item { grid-template-columns: 1fr; gap: 7px; padding-left: 50px; }
	#rules-section .rules-time { text-align: left; }
	#rules-section .rules-body { padding-left: 0; }
	#rules-section .rules-body::before { top: -30px; left: -38px; }
	#cta-section .cta-overlay { background: linear-gradient( 90deg, rgba(9, 22, 46, 0.97) 0%, rgba(9, 22, 46, 0.8) 70%, rgba(9, 22, 46, 0.42) 100% ); }
	#cta-section .cta-title { font-size: clamp(46px, 12vw, 78px); }
	#cta-section .cta-row { align-items: flex-start; flex-direction: column; gap: 24px; }
	footer .footer-top, footer .footer-bottom { align-items: flex-start; flex-direction: column; }
	footer .footer-nav { justify-content: flex-start; }
}
@media (max-width: 500px) {
	:root { --header-height: 64px; --section-space: 78px; }
	body { font-size: 16px; line-height: 1.75; }
	header { padding: 10px 15px; }
	header h1 { font-size: 19px; }
	header .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
	header .menu-toggle { width: 44px; height: 40px; }
	header .menu-toggle span { left: 9px; }
	header .menu-toggle span:first-child { top: 11px; }
	header .menu-toggle span:nth-child(2) { top: 18px; }
	header .menu-toggle span:last-child { top: 25px; }
	header .menu-toggle.is-active span:first-child, header .menu-toggle.is-active span:last-child { top: 18px; }
	header .site-nav { padding-inline: 22px; font-size: clamp(27px, 8vw, 36px); }
	#hero-section, #hero-section .hero-content { min-height: 660px; }
	#hero-section .hero-content { width: calc(100% - 30px); padding-top: 162px; padding-bottom: 98px; }
	#hero-section .hero-scoreboard { top: 84px; left: 15px; }
	#hero-section .hero-scoreboard span, #hero-section .hero-scoreboard strong { padding: 8px 10px; font-size: 13px; }
	#hero-section .hero-kicker { gap: 8px; margin-bottom: 14px; font-size: 14px; letter-spacing: 0.04em; }
	#hero-section .hero-kicker::before { display: none; }
	#hero-section .hero-title { font-size: clamp(48px, 17vw, 72px); line-height: 0.98; }
	#hero-section .hero-title em { text-shadow: 4px 4px 0 var(--color-brand); }
	#hero-section .hero-bottom { margin-top: 22px; }
	#hero-section .hero-description { font-size: 16px; line-height: 1.78; }
	#hero-section .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
	#hero-section .hero-primary { padding: 13px 18px; font-size: 16px; box-shadow: 5px 5px 0 var(--color-brand); }
	#hero-section .hero-secondary { font-size: 15px; }
	#hero-section .hero-ticker { right: -250px; bottom: 21px; font-size: 13px; }
	#chaos-section { padding-block: 78px; }
	#chaos-section .chaos-layout { width: calc(100% - 30px); gap: 38px; }
	#chaos-section .chaos-label { margin-bottom: 20px; font-size: 13px; }
	#chaos-section .chaos-title { font-size: clamp(39px, 13vw, 56px); line-height: 1.07; }
	#chaos-section .chaos-text { margin-top: 23px; font-size: 16px; line-height: 1.8; }
	#chaos-section .chaos-quote { margin-top: 31px; padding-left: 18px; font-size: 17px; }
	#chaos-section .chaos-media { min-height: 365px; }
	#chaos-section .chaos-figure { width: calc(100% - 8px); box-shadow: 7px 7px 0 var(--color-dark); }
	#chaos-section .chaos-image { aspect-ratio: 1 / 1; }
	#chaos-section .chaos-caption { align-items: flex-start; flex-direction: column; gap: 2px; font-size: 13px; }
	#chaos-section .chaos-sticker { bottom: -9px; width: 150px; padding: 13px; font-size: 15px; }
	#chaos-section .chaos-sticker small { font-size: 13px; }
	#match-section { padding-top: 76px; padding-bottom: 76px; }
	#match-section .match-header { width: calc(100% - 30px); margin-bottom: 38px; }
	#match-section .match-title { font-size: clamp(43px, 14vw, 62px); }
	#match-section .match-intro { font-size: 16px; }
	#match-section .match-item { grid-template-columns: 1fr 44px; gap: 9px 13px; padding: 20px 15px; }
	#match-section .match-meta { grid-column: 1; grid-row: auto; font-size: 13px; }
	#match-section .match-name { grid-column: 1; font-size: 24px; }
	#match-section .match-text { grid-column: 1 / -1; font-size: 15px; line-height: 1.72; }
	#match-section .match-arrow { grid-column: 2; grid-row: 1 / span 2; width: 42px; height: 42px; font-size: 19px; }
	#arena-section { padding-block: 78px 94px; }
	#arena-section .arena-header { width: calc(100% - 30px); gap: 25px; }
	#arena-section .arena-title { font-size: clamp(41px, 13vw, 60px); }
	#arena-section .arena-note { max-width: 290px; padding: 14px 15px; font-size: 15px; }
	#arena-section .arena-collage { width: calc(100% - 30px); gap: 22px; }
	#arena-section .arena-figure { width: 96%; box-shadow: 5px 5px 0 var(--color-dark); }
	#arena-section .arena-caption { align-items: flex-start; flex-direction: column; gap: 1px; font-size: 13px; }
	#arena-section .arena-warning { max-width: 190px; padding: 14px; font-size: 15px; }
	#roster-section { padding-block: 78px; }
	#roster-section .roster-layout { width: calc(100% - 30px); gap: 40px; }
	#roster-section .roster-kicker { font-size: 13px; }
	#roster-section .roster-title { font-size: clamp(40px, 13vw, 58px); }
	#roster-section .roster-text { margin-top: 23px; font-size: 16px; }
	#roster-section .roster-link { margin-top: 27px; font-size: 15px; }
	#roster-section .roster-item { grid-template-columns: 52px 1fr; gap: 15px; min-height: 110px; padding: 19px 0; }
	#roster-section .roster-symbol { width: 47px; height: 47px; font-size: 20px; }
	#roster-section .roster-body h3 { font-size: 20px; }
	#roster-section .roster-body p { font-size: 14px; }
	#roster-section .roster-trait { font-size: 13px; }
	#rules-section { padding-block: 78px; }
	#rules-section .rules-header, #rules-section .rules-list { width: calc(100% - 30px); }
	#rules-section .rules-header { margin-bottom: 47px; }
	#rules-section .rules-title { font-size: clamp(42px, 13.5vw, 62px); }
	#rules-section .rules-list::before { left: 9px; }
	#rules-section .rules-item { padding: 27px 0 27px 38px; }
	#rules-section .rules-time { font-size: 13px; }
	#rules-section .rules-body::before { left: -36px; }
	#rules-section .rules-body h3 { font-size: 22px; }
	#rules-section .rules-body p { font-size: 15px; line-height: 1.78; }
	#cta-section { min-height: 570px; }
	#cta-section .cta-content { width: calc(100% - 30px); padding-block: 78px; }
	#cta-section .cta-eyebrow { font-size: 13px; }
	#cta-section .cta-title { font-size: clamp(45px, 15vw, 70px); line-height: 0.98; }
	#cta-section .cta-title span { text-shadow: 4px 4px 0 var(--color-brand); }
	#cta-section .cta-row { margin-top: 31px; }
	#cta-section .cta-link { padding: 13px 18px; font-size: 15px; box-shadow: 5px 5px 0 var(--color-brand); }
	#cta-section .cta-note { font-size: 15px; }
	footer { padding: 38px 15px; }
	footer .footer-logo { font-size: 24px; }
	footer .footer-text { font-size: 14px; }
	footer .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; gap: 11px 20px; font-size: 14px; }
	footer .footer-bottom { margin-top: 32px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms; animation-iteration-count: 1; scroll-behavior: auto; transition-duration: 0.01ms; }
	.reveal-block { opacity: 1; transform: none; }
	#hero-section .hero-title { transform: none; }
	#hero-section .hero-image { transform: none; }
	#rules-section .rules-list::before { transform: scaleY(1); }
}