:root {
	--color-bg: #07130f;
	--color-bg-soft: #0d211a;
	--color-card: #102820;
	--color-card-light: #17362c;
	--color-line: rgba(255, 255, 255, 0.11);
	--color-text: #f5fff9;
	--color-muted: #9eb9ae;
	--color-primary: #b8ff3d;
	--color-primary-dark: #7ecf19;
	--color-accent: #ffda44;
	--color-dark: #07130f;
	--shadow-card: 0 24px 54px rgba(0, 0, 0, 0.2);
	--radius-large: 30px;
	--radius-medium: 22px;
	--radius-small: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { margin: 0; background: var(--color-bg); color: var(--color-text); font-family: "Noto Sans TC", sans-serif; overflow-x: hidden; }
body::before { position: fixed; inset: 0; z-index: -2; background: radial-gradient( circle at 15% 10%, rgba(87, 182, 61, 0.16), transparent 26% ), radial-gradient( circle at 85% 22%, rgba(184, 255, 61, 0.1), transparent 20% ), #07130f; content: ""; }
body::after { position: fixed; inset: 0; z-index: -1; opacity: 0.13; background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px); background-size: 54px 54px; content: ""; pointer-events: none; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/*　header　*/
header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid transparent; background: rgba(7, 19, 15, 0.2); backdrop-filter: blur(20px); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
header.is-scrolled { border-color: var(--color-line); background: rgba(7, 19, 15, 0.92); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.15); }
header .header-inner { display: flex; width: min(1440px, 92%); min-height: 82px; margin: auto; align-items: center; justify-content: space-between; gap: 26px; }
header .brand-link { display: flex; align-items: center; gap: 12px; }
header .brand-mark { position: relative; display: grid; width: 46px; height: 46px; overflow: hidden; border: 1px solid rgba(184, 255, 61, 0.36); border-radius: 16px; background: linear-gradient(145deg, var(--color-primary), #55b826); color: var(--color-dark); place-items: center; box-shadow: 0 8px 22px rgba(184, 255, 61, 0.18); }
header .brand-mark::before { position: absolute; width: 22px; height: 22px; border: 2px dashed rgba(7, 19, 15, 0.44); border-radius: 50%; content: ""; }
header .brand-mark span { position: relative; font-size: 18px; font-weight: 900; }
header h1 { margin: 0; font-size: 19px; font-weight: 900; letter-spacing: -0.5px; line-height: 1.15; }
header h1 span { display: block; margin-top: 4px; color: var(--color-primary); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
header nav { display: flex; align-items: center; gap: 28px; }
header nav a { position: relative; color: var(--color-muted); font-size: 14px; font-weight: 700; transition: color 0.25s ease; }
header nav a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; border-radius: 10px; background: var(--color-primary); content: ""; opacity: 0; transform: scaleX(0.4); transition: opacity 0.25s ease, transform 0.25s ease; }
header nav a:hover { color: var(--color-text); }
header nav a:hover::after { opacity: 1; transform: scaleX(1); }
header .header-action { display: flex; align-items: center; gap: 12px; }
header .header-play { display: inline-flex; min-height: 43px; padding: 0 18px; border: 1px solid var(--color-primary); border-radius: 999px; align-items: center; gap: 8px; background: var(--color-primary); color: var(--color-dark); font-size: 13px; font-weight: 900; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
header .header-play:hover { background: transparent; color: var(--color-primary); transform: translateY(-2px); }
header .menu-trigger { display: none; width: 43px; height: 43px; border: 1px solid var(--color-line); border-radius: 13px; align-items: center; justify-content: center; }
header .menu-trigger span { position: relative; width: 18px; height: 2px; border-radius: 10px; background: var(--color-text); transition: background 0.25s ease; }
header .menu-trigger span::before { position: absolute; top: -6px; width: 18px; height: 2px; border-radius: 10px; background: var(--color-text); content: ""; transition: transform 0.25s ease, top 0.25s ease; }
header .menu-trigger span::after { position: absolute; top: 6px; width: 18px; height: 2px; border-radius: 10px; background: var(--color-text); content: ""; transition: transform 0.25s ease, top 0.25s ease; }
header.is-nav-active .menu-trigger span { background: transparent; }
header.is-nav-active .menu-trigger span::before { top: 0; transform: rotate(45deg); }
header.is-nav-active .menu-trigger span::after { top: 0; transform: rotate(-45deg); }

main { display: block; }

/*　hero-section　*/
#hero-section { position: relative; overflow: hidden; }
#hero-section .hero-inner { display: grid; width: min(1440px, 92%); min-height: 790px; margin: auto; padding: 82px 0 72px; align-items: center; grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr); gap: 50px; }
#hero-section .hero-content { position: relative; z-index: 2; }
#hero-section .hero-kicker { display: inline-flex; margin-bottom: 20px; padding: 8px 12px; border: 1px solid rgba(184, 255, 61, 0.28); border-radius: 999px; align-items: center; gap: 8px; background: rgba(184, 255, 61, 0.07); color: var(--color-primary); font-size: 12px; font-weight: 800; letter-spacing: 1px; }
#hero-section .hero-kicker::before { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 0 5px rgba(184, 255, 61, 0.12); content: ""; }
#hero-section h2 { max-width: 760px; margin: 0; font-size: clamp(52px, 6.3vw, 94px); font-weight: 900; letter-spacing: -5px; line-height: 1.02; }
#hero-section h2 span { display: block; color: var(--color-primary); }
#hero-section .hero-text { max-width: 700px; margin: 26px 0 0; color: var(--color-muted); font-size: 17px; line-height: 1.95; }
#hero-section .hero-actions { display: flex; margin-top: 34px; flex-wrap: wrap; gap: 14px; }
#hero-section .hero-main-link { display: inline-flex; min-height: 57px; padding: 0 24px; border: 1px solid var(--color-primary); border-radius: 17px; align-items: center; gap: 11px; background: var(--color-primary); color: var(--color-dark); font-size: 15px; font-weight: 900; box-shadow: 0 16px 34px rgba(148, 226, 43, 0.18); transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
#hero-section .hero-main-link:hover { background: transparent; color: var(--color-primary); box-shadow: 0 20px 40px rgba(148, 226, 43, 0.1); transform: translateY(-3px); }
#hero-section .hero-sub-link { display: inline-flex; min-height: 57px; padding: 0 22px; border: 1px solid var(--color-line); border-radius: 17px; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.03); color: var(--color-text); font-size: 15px; font-weight: 800; transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
#hero-section .hero-sub-link:hover { border-color: rgba(184, 255, 61, 0.4); background: rgba(184, 255, 61, 0.06); transform: translateY(-3px); }
#hero-section .hero-stats { display: flex; margin-top: 48px; gap: 36px; }
#hero-section .hero-stat { position: relative; padding-right: 36px; }
#hero-section .hero-stat:not(:last-child)::after { position: absolute; top: 7px; right: 0; width: 1px; height: 44px; background: var(--color-line); content: ""; }
#hero-section .hero-stat strong { display: block; color: var(--color-text); font-size: 27px; font-weight: 900; letter-spacing: -1px; }
#hero-section .hero-stat span { display: block; margin-top: 4px; color: var(--color-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.6px; }
#hero-section .hero-stage { position: relative; min-height: 630px; }
#hero-section .hero-glow { position: absolute; top: 12%; right: 6%; width: 72%; height: 72%; border-radius: 50%; background: radial-gradient( circle, rgba(184, 255, 61, 0.28), rgba(184, 255, 61, 0) 67% ); filter: blur(10px); }
#hero-section .hero-photo { position: absolute; top: 8%; right: 0; width: 88%; height: 76%; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 38px; background: #17362c; box-shadow: 0 38px 70px rgba(0, 0, 0, 0.36); transform: rotate(3deg); transition: transform 0.5s ease; }
#hero-section .hero-photo:hover { transform: rotate(1deg) translateY(-8px); }
#hero-section .hero-photo::after { position: absolute; inset: 0; background: linear-gradient( 180deg, rgba(7, 19, 15, 0.04), rgba(7, 19, 15, 0.66) ); content: ""; }
#hero-section .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
#hero-section .hero-score { position: absolute; right: 7%; bottom: 11%; left: 18%; z-index: 2; display: flex; padding: 18px 20px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 20px; align-items: center; justify-content: space-between; gap: 20px; background: rgba(7, 19, 15, 0.8); backdrop-filter: blur(18px); }
#hero-section .hero-score-info span { display: block; color: var(--color-primary); font-size: 11px; font-weight: 900; letter-spacing: 1.5px; }
#hero-section .hero-score-info strong { display: block; margin-top: 6px; font-size: 16px; font-weight: 900; }
#hero-section .hero-score-value { display: flex; align-items: center; gap: 12px; font-size: 23px; font-weight: 900; }
#hero-section .hero-score-value i { color: var(--color-primary); font-size: 14px; font-style: normal; }
#hero-section .hero-mini-card { position: absolute; z-index: 3; display: flex; width: 176px; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 20px; align-items: center; gap: 11px; background: rgba(16, 40, 32, 0.88); box-shadow: var(--shadow-card); backdrop-filter: blur(16px); transition: transform 0.35s ease; }
#hero-section .hero-mini-card:hover { transform: translateY(-8px); }
#hero-section .hero-mini-card-left { top: 18%; left: -2%; }
#hero-section .hero-mini-card-right { right: -2%; bottom: 5%; }
#hero-section .hero-mini-icon { display: grid; width: 45px; height: 45px; border-radius: 15px; flex: 0 0 auto; background: rgba(184, 255, 61, 0.13); color: var(--color-primary); font-size: 20px; place-items: center; }
#hero-section .hero-mini-text span { display: block; color: var(--color-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.7px; }
#hero-section .hero-mini-text strong { display: block; margin-top: 4px; font-size: 13px; font-weight: 900; }
#hero-section .hero-ball { position: absolute; right: -120px; bottom: -110px; width: 290px; height: 290px; border: 1px solid rgba(184, 255, 61, 0.12); border-radius: 50%; opacity: 0.55; }
#hero-section .hero-ball::before { position: absolute; inset: 32px; border: 1px dashed rgba(184, 255, 61, 0.28); border-radius: 50%; content: ""; }
#hero-section [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.75s ease, transform 0.75s ease; }
#hero-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }
#hero-section .hero-stage[data-reveal] { transform: translateX(26px); }
#hero-section .hero-stage[data-reveal].is-active { transform: translateX(0); }

/*　game-section　*/
#game-section { position: relative; padding: 118px 0 126px; background: #f3f7f0; color: #102019; }
#game-section .game-inner { width: min(1440px, 92%); margin: auto; }
#game-section .section-head { display: flex; margin-bottom: 40px; align-items: end; justify-content: space-between; gap: 28px; }
#game-section .section-label { display: block; margin-bottom: 10px; color: #5a9f1d; font-size: 12px; font-weight: 900; letter-spacing: 2px; }
#game-section h2 { margin: 0; font-size: clamp(34px, 4vw, 57px); font-weight: 900; letter-spacing: -2.2px; line-height: 1.1; }
#game-section .section-text { max-width: 570px; margin: 15px 0 0; color: #64756d; font-size: 15px; line-height: 1.9; }
#game-section .game-more { display: inline-flex; min-height: 49px; padding: 0 17px; border: 1px solid rgba(16, 32, 25, 0.13); border-radius: 15px; align-items: center; gap: 9px; color: #20372e; font-size: 13px; font-weight: 900; transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
#game-section .game-more:hover { border-color: rgba(90, 159, 29, 0.4); background: #e8f5de; transform: translateY(-3px); }
#game-section .filter-list { display: flex; margin-bottom: 25px; flex-wrap: wrap; gap: 10px; }
#game-section .filter-link { display: inline-flex; min-height: 39px; padding: 0 14px; border: 1px solid rgba(16, 32, 25, 0.11); border-radius: 999px; align-items: center; background: #fff; color: #5b6a64; font-size: 12px; font-weight: 800; transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
#game-section .filter-link:hover { border-color: #5a9f1d; color: #3d7111; }
#game-section .filter-link.is-current { border-color: #102019; background: #102019; color: #f3f7f0; }
#game-section .game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
#game-section .game-item { overflow: hidden; border: 1px solid rgba(16, 32, 25, 0.09); border-radius: 23px; background: #fff; box-shadow: 0 14px 30px rgba(29, 62, 44, 0.05); transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease; }
#game-section .game-item:hover { border-color: rgba(90, 159, 29, 0.35); box-shadow: 0 24px 44px rgba(29, 62, 44, 0.13); transform: translateY(-9px); }
#game-section .game-media { position: relative; height: 205px; overflow: hidden; background: #dce7d8; }
#game-section .game-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(7, 19, 15, 0.6)); content: ""; }
#game-section .game-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
#game-section .game-item:hover .game-media img { transform: scale(1.08); }
#game-section .game-badge { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 6px 9px; border-radius: 999px; background: rgba(7, 19, 15, 0.82); color: #d8ff94; font-size: 10px; font-weight: 900; letter-spacing: 0.8px; backdrop-filter: blur(9px); }
#game-section .game-rating { position: absolute; right: 13px; bottom: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: 11px; font-weight: 900; }
#game-section .game-rating::before { color: #ffdc4b; content: "★"; }
#game-section .game-content { padding: 18px 18px 20px; }
#game-section .game-meta { display: flex; margin-bottom: 9px; align-items: center; justify-content: space-between; gap: 12px; color: #7b8b84; font-size: 11px; font-weight: 700; }
#game-section h3 { margin: 0; color: #12241c; font-size: 18px; font-weight: 900; letter-spacing: -0.5px; }
#game-section .game-play { display: flex; margin-top: 18px; align-items: center; justify-content: space-between; gap: 10px; color: #4c871c; font-size: 12px; font-weight: 900; }
#game-section .game-play span { display: grid; width: 31px; height: 31px; border-radius: 50%; background: #edf8e6; color: #4c871c; place-items: center; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
#game-section .game-item:hover .game-play span { background: #5a9f1d; color: #fff; transform: translateX(3px); }
#game-section [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
#game-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }

/*　spotlight-section　*/
#spotlight-section { padding: 128px 0; overflow: hidden; background: #0c211a; }
#spotlight-section .spotlight-inner { display: grid; width: min(1440px, 92%); margin: auto; align-items: center; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: 82px; }
#spotlight-section .spotlight-media { position: relative; min-height: 620px; }
#spotlight-section .spotlight-photo { position: absolute; inset: 0 54px 34px 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 32px; background: #17362c; }
#spotlight-section .spotlight-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(7, 19, 15, 0.62)); content: ""; }
#spotlight-section .spotlight-photo img { width: 100%; height: 100%; object-fit: cover; }
#spotlight-section .spotlight-note { position: absolute; right: 0; bottom: 0; width: min(280px, 80%); padding: 22px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 23px; background: rgba(18, 50, 39, 0.92); box-shadow: var(--shadow-card); backdrop-filter: blur(15px); }
#spotlight-section .spotlight-note span { display: block; color: var(--color-primary); font-size: 11px; font-weight: 900; letter-spacing: 1.8px; }
#spotlight-section .spotlight-note strong { display: block; margin-top: 9px; font-size: 18px; font-weight: 900; line-height: 1.45; }
#spotlight-section .spotlight-note p { margin: 10px 0 0; color: var(--color-muted); font-size: 12px; line-height: 1.8; }
#spotlight-section .section-label { display: block; margin-bottom: 12px; color: var(--color-primary); font-size: 12px; font-weight: 900; letter-spacing: 2px; }
#spotlight-section h2 { margin: 0; font-size: clamp(35px, 4.3vw, 61px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.12; }
#spotlight-section .spotlight-text { margin: 20px 0 0; color: var(--color-muted); font-size: 15px; line-height: 1.95; }
#spotlight-section .spotlight-list { display: grid; margin-top: 34px; gap: 14px; }
#spotlight-section .spotlight-item { display: grid; padding: 17px 18px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; align-items: center; grid-template-columns: 45px minmax(0, 1fr); gap: 14px; background: rgba(255, 255, 255, 0.025); transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
#spotlight-section .spotlight-item:hover { border-color: rgba(184, 255, 61, 0.28); background: rgba(184, 255, 61, 0.05); transform: translateX(7px); }
#spotlight-section .spotlight-icon { display: grid; width: 45px; height: 45px; border-radius: 15px; background: rgba(184, 255, 61, 0.1); color: var(--color-primary); font-size: 19px; place-items: center; }
#spotlight-section .spotlight-info strong { display: block; font-size: 15px; font-weight: 900; }
#spotlight-section .spotlight-info span { display: block; margin-top: 5px; color: var(--color-muted); font-size: 12px; line-height: 1.65; }
#spotlight-section .spotlight-link { display: inline-flex; min-height: 54px; margin-top: 32px; padding: 0 20px; border: 1px solid var(--color-primary); border-radius: 16px; align-items: center; gap: 10px; color: var(--color-primary); font-size: 14px; font-weight: 900; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
#spotlight-section .spotlight-link:hover { background: var(--color-primary); color: var(--color-dark); transform: translateY(-3px); }
#spotlight-section [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
#spotlight-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }

/*　challenge-section　*/
#challenge-section { position: relative; padding: 118px 0 120px; overflow: hidden; background: #dfff76; color: #102019; }
#challenge-section::before { position: absolute; top: -80px; right: -80px; width: 520px; height: 520px; border: 1px solid rgba(16, 32, 25, 0.12); border-radius: 50%; content: ""; }
#challenge-section::after { position: absolute; right: 118px; bottom: -220px; width: 460px; height: 460px; border: 1px dashed rgba(16, 32, 25, 0.2); border-radius: 50%; content: ""; }
#challenge-section .challenge-inner { position: relative; z-index: 2; display: grid; width: min(1440px, 92%); margin: auto; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
#challenge-section .section-label { display: block; margin-bottom: 12px; color: #4d8519; font-size: 12px; font-weight: 900; letter-spacing: 2px; }
#challenge-section h2 { margin: 0; font-size: clamp(39px, 4.8vw, 66px); font-weight: 900; letter-spacing: -3px; line-height: 1.05; }
#challenge-section .challenge-text { max-width: 530px; margin: 22px 0 0; color: #4b654d; font-size: 15px; line-height: 1.95; }
#challenge-section .challenge-link { display: inline-flex; min-height: 55px; margin-top: 30px; padding: 0 21px; border: 1px solid #102019; border-radius: 17px; align-items: center; gap: 10px; background: #102019; color: #f5fff9; font-size: 14px; font-weight: 900; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
#challenge-section .challenge-link:hover { background: transparent; color: #102019; transform: translateY(-3px); }
#challenge-section .challenge-list { display: grid; gap: 12px; }
#challenge-section .challenge-item { display: grid; padding: 21px 23px; border: 1px solid rgba(16, 32, 25, 0.13); border-radius: 22px; align-items: center; grid-template-columns: 60px minmax(0, 1fr) auto; gap: 18px; background: rgba(255, 255, 255, 0.38); transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
#challenge-section .challenge-item:hover { border-color: rgba(16, 32, 25, 0.3); background: rgba(255, 255, 255, 0.66); transform: translateX(-7px); }
#challenge-section .challenge-number { display: grid; width: 60px; height: 60px; border: 1px solid rgba(16, 32, 25, 0.15); border-radius: 20px; background: rgba(16, 32, 25, 0.08); color: #315922; font-size: 17px; font-weight: 900; place-items: center; }
#challenge-section .challenge-info strong { display: block; font-size: 18px; font-weight: 900; }
#challenge-section .challenge-info span { display: block; margin-top: 6px; color: #58705b; font-size: 12px; line-height: 1.7; }
#challenge-section .challenge-arrow { display: grid; width: 38px; height: 38px; border-radius: 50%; background: rgba(16, 32, 25, 0.09); color: #102019; font-size: 18px; font-weight: 900; place-items: center; }
#challenge-section [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
#challenge-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }

/*　rank-section　*/
#rank-section { padding: 126px 0; background: #07130f; }
#rank-section .rank-inner { display: grid; width: min(1440px, 92%); margin: auto; align-items: stretch; grid-template-columns: minmax(0, 1fr) 390px; gap: 34px; }
#rank-section .rank-board { padding: 30px; border: 1px solid var(--color-line); border-radius: 29px; background: rgba(255, 255, 255, 0.025); }
#rank-section .section-head { display: flex; margin-bottom: 22px; align-items: end; justify-content: space-between; gap: 20px; }
#rank-section .section-label { display: block; margin-bottom: 10px; color: var(--color-primary); font-size: 12px; font-weight: 900; letter-spacing: 2px; }
#rank-section h2 { margin: 0; font-size: clamp(33px, 4vw, 51px); font-weight: 900; letter-spacing: -2px; line-height: 1.12; }
#rank-section .rank-date { color: var(--color-muted); font-size: 12px; font-weight: 700; }
#rank-section .rank-list { display: grid; gap: 10px; }
#rank-section .rank-item { display: grid; min-height: 74px; padding: 12px 16px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 17px; align-items: center; grid-template-columns: 45px minmax(0, 1fr) 102px 34px; gap: 12px; background: rgba(255, 255, 255, 0.024); transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
#rank-section .rank-item:hover { border-color: rgba(184, 255, 61, 0.28); background: rgba(184, 255, 61, 0.045); transform: translateX(5px); }
#rank-section .rank-number { color: var(--color-primary); font-size: 17px; font-weight: 900; }
#rank-section .rank-info strong { display: block; font-size: 14px; font-weight: 900; }
#rank-section .rank-info span { display: block; margin-top: 4px; color: var(--color-muted); font-size: 11px; font-weight: 700; }
#rank-section .rank-score { color: #d6e5dd; font-size: 13px; font-weight: 900; text-align: right; }
#rank-section .rank-score span { display: block; margin-top: 2px; color: var(--color-muted); font-size: 10px; font-weight: 700; }
#rank-section .rank-arrow { display: grid; width: 31px; height: 31px; border-radius: 50%; background: rgba(184, 255, 61, 0.08); color: var(--color-primary); place-items: center; }
#rank-section .rank-feature { position: relative; display: flex; min-height: 100%; overflow: hidden; padding: 27px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 29px; flex-direction: column; justify-content: end; background: #14362a; }
#rank-section .rank-feature::after { position: absolute; inset: 0; background: linear-gradient( 180deg, rgba(7, 19, 15, 0.12), rgba(7, 19, 15, 0.88) ); content: ""; }
#rank-section .rank-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
#rank-section .rank-feature-content { position: relative; z-index: 2; }
#rank-section .rank-feature-label { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(184, 255, 61, 0.3); border-radius: 999px; background: rgba(184, 255, 61, 0.1); color: var(--color-primary); font-size: 10px; font-weight: 900; letter-spacing: 1.2px; }
#rank-section .rank-feature h3 { margin: 15px 0 0; font-size: 29px; font-weight: 900; letter-spacing: -1px; line-height: 1.17; }
#rank-section .rank-feature p { margin: 12px 0 0; color: #b5cac1; font-size: 13px; line-height: 1.8; }
#rank-section .rank-feature-link { display: inline-flex; min-height: 48px; margin-top: 20px; padding: 0 16px; border-radius: 14px; align-items: center; justify-content: center; gap: 8px; background: var(--color-primary); color: var(--color-dark); font-size: 13px; font-weight: 900; transition: background 0.25s ease, transform 0.25s ease; }
#rank-section .rank-feature-link:hover { background: #d5ff8a; transform: translateY(-3px); }
#rank-section [data-reveal] { opacity: 0; transform: translateY(27px); transition: opacity 0.7s ease, transform 0.7s ease; }
#rank-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }

/*　faq-section　*/
#faq-section { padding: 120px 0 128px; background: #f3f7f0; color: #102019; }
#faq-section .faq-inner { display: grid; width: min(1180px, 92%); margin: auto; grid-template-columns: 0.78fr 1.22fr; gap: 70px; }
#faq-section .section-label { display: block; margin-bottom: 11px; color: #5a9f1d; font-size: 12px; font-weight: 900; letter-spacing: 2px; }
#faq-section h2 { margin: 0; font-size: clamp(36px, 4vw, 55px); font-weight: 900; letter-spacing: -2px; line-height: 1.1; }
#faq-section .faq-text { margin: 19px 0 0; color: #66766f; font-size: 15px; line-height: 1.9; }
#faq-section .faq-list { display: grid; gap: 12px; }
#faq-section .faq-item { overflow: hidden; border: 1px solid rgba(16, 32, 25, 0.1); border-radius: 18px; background: #fff; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
#faq-section .faq-item.is-active { border-color: rgba(90, 159, 29, 0.45); box-shadow: 0 15px 30px rgba(29, 62, 44, 0.08); }
#faq-section .faq-question { display: flex; min-height: 72px; padding: 16px 18px; align-items: center; justify-content: space-between; gap: 16px; color: #1e3029; font-size: 15px; font-weight: 900; }
#faq-section .faq-symbol { position: relative; width: 31px; height: 31px; border-radius: 50%; flex: 0 0 auto; background: #eff7eb; }
#faq-section .faq-symbol::before { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; border-radius: 10px; background: #5a9f1d; content: ""; transform: translate(-50%, -50%); }
#faq-section .faq-symbol::after { position: absolute; top: 50%; left: 50%; width: 2px; height: 12px; border-radius: 10px; background: #5a9f1d; content: ""; transform: translate(-50%, -50%); transition: opacity 0.25s ease, transform 0.25s ease; }
#faq-section .faq-item.is-active .faq-symbol::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
#faq-section .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
#faq-section .faq-item.is-active .faq-answer { max-height: 170px; }
#faq-section .faq-answer p { margin: 0; padding: 0 18px 20px; color: #697a73; font-size: 13px; line-height: 1.9; }
#faq-section [data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
#faq-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }

/*　cta-section　*/
#cta-section { position: relative; padding: 50px 0 86px; overflow: hidden; background: #f3f7f0; color: #102019; }
#cta-section .cta-inner { position: relative; display: grid; width: min(1440px, 92%); min-height: 360px; overflow: hidden; padding: 48px; border-radius: 32px; align-items: center; grid-template-columns: minmax(0, 1fr) 330px; gap: 30px; background: #17362c; color: var(--color-text); }
#cta-section .cta-inner::before { position: absolute; top: -130px; right: 110px; width: 470px; height: 470px; border: 1px solid rgba(184, 255, 61, 0.24); border-radius: 50%; content: ""; }
#cta-section .cta-inner::after { position: absolute; right: -100px; bottom: -250px; width: 500px; height: 500px; border: 1px dashed rgba(184, 255, 61, 0.24); border-radius: 50%; content: ""; }
#cta-section .cta-content { position: relative; z-index: 2; }
#cta-section .section-label { display: block; margin-bottom: 12px; color: var(--color-primary); font-size: 12px; font-weight: 900; letter-spacing: 2px; }
#cta-section h2 { max-width: 760px; margin: 0; font-size: clamp(36px, 4.4vw, 61px); font-weight: 900; letter-spacing: -2.6px; line-height: 1.1; }
#cta-section .cta-text { max-width: 680px; margin: 18px 0 0; color: #b4c8c0; font-size: 15px; line-height: 1.85; }
#cta-section .cta-link { display: inline-flex; min-height: 57px; margin-top: 27px; padding: 0 22px; border: 1px solid var(--color-primary); border-radius: 16px; align-items: center; gap: 11px; background: var(--color-primary); color: var(--color-dark); font-size: 14px; font-weight: 900; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
#cta-section .cta-link:hover { background: transparent; color: var(--color-primary); transform: translateY(-3px); }
#cta-section .cta-ball { position: relative; z-index: 2; width: 250px; height: 250px; margin: auto; border: 1px solid rgba(184, 255, 61, 0.3); border-radius: 50%; background: radial-gradient( circle at 36% 31%, rgba(255, 255, 255, 0.26), rgba(184, 255, 61, 0.08) 36%, rgba(184, 255, 61, 0.02) 66% ); box-shadow: 0 0 0 20px rgba(184, 255, 61, 0.04), 0 0 0 42px rgba(184, 255, 61, 0.025); }
#cta-section .cta-ball::before { position: absolute; inset: 29px; border: 1px dashed rgba(184, 255, 61, 0.48); border-radius: 50%; content: ""; }
#cta-section .cta-ball::after { position: absolute; top: 50%; left: 50%; width: 74px; height: 74px; border: 2px solid rgba(184, 255, 61, 0.72); border-radius: 23px; content: ""; transform: translate(-50%, -50%) rotate(45deg); }
#cta-section [data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
#cta-section [data-reveal].is-active { opacity: 1; transform: translateY(0); }

/*　footer　*/
footer { border-top: 1px solid var(--color-line); background: #07130f; }
footer .footer-inner { display: grid; width: min(1440px, 92%); margin: auto; padding: 42px 0 28px; gap: 30px; }
footer .footer-top { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
footer .footer-brand { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 900; }
footer .footer-mark { display: grid; width: 39px; height: 39px; border-radius: 14px; background: var(--color-primary); color: var(--color-dark); font-size: 16px; place-items: center; }
footer .footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer .footer-nav a { color: var(--color-muted); font-size: 12px; font-weight: 700; transition: color 0.25s ease; }
footer .footer-nav a:hover { color: var(--color-primary); }
footer .footer-bottom { display: flex; padding-top: 22px; border-top: 1px solid var(--color-line); align-items: center; justify-content: space-between; gap: 20px; color: #6f8b80; font-size: 11px; line-height: 1.7; }
footer .footer-tags { display: flex; flex-wrap: wrap; gap: 7px; }
footer .footer-tags span { padding: 5px 8px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 999px; }

@media (max-width: 1280px) {
	#hero-section .hero-inner { min-height: 720px; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr); gap: 32px; }
	#hero-section .hero-stage { min-height: 560px; }
	#game-section .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	#spotlight-section .spotlight-inner { gap: 52px; }
	#spotlight-section .spotlight-media { min-height: 570px; }
	#challenge-section .challenge-inner { gap: 42px; }
}
@media (max-width: 960px) {
	header .header-inner { min-height: 74px; }
	header nav { position: absolute; top: 74px; right: 0; left: 0; display: grid; max-height: 0; overflow: hidden; padding: 0 4%; border-bottom: 1px solid transparent; background: rgba(7, 19, 15, 0.97); gap: 0; opacity: 0; transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, border-color 0.35s ease; }
	header.is-nav-active nav { max-height: 340px; padding: 12px 4% 18px; border-color: var(--color-line); opacity: 1; }
	header nav a { padding: 13px 0; }
	header nav a::after { display: none; }
	header .header-play { display: none; }
	header .menu-trigger { display: flex; }
	#hero-section .hero-inner { min-height: auto; padding: 72px 0 82px; grid-template-columns: 1fr; gap: 26px; }
	#hero-section h2 { max-width: 820px; }
	#hero-section .hero-stage { width: min(650px, 100%); min-height: 510px; margin: 0 auto; }
	#hero-section .hero-photo { width: 82%; }
	#hero-section .hero-mini-card-left { left: 1%; }
	#game-section { padding: 100px 0 104px; }
	#game-section .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	#spotlight-section { padding: 104px 0; }
	#spotlight-section .spotlight-inner { grid-template-columns: 1fr; gap: 46px; }
	#spotlight-section .spotlight-media { width: min(720px, 100%); min-height: 520px; }
	#challenge-section { padding: 100px 0; }
	#challenge-section .challenge-inner { grid-template-columns: 1fr; gap: 38px; }
	#rank-section { padding: 104px 0; }
	#rank-section .rank-inner { grid-template-columns: 1fr; }
	#rank-section .rank-feature { min-height: 430px; }
	#faq-section { padding: 100px 0 106px; }
	#faq-section .faq-inner { grid-template-columns: 1fr; gap: 32px; }
	#cta-section .cta-inner { grid-template-columns: minmax(0, 1fr) 230px; }
	#cta-section .cta-ball { width: 190px; height: 190px; }
}
@media (max-width: 768px) {
	#hero-section .hero-inner { padding: 62px 0 70px; }
	#hero-section h2 { font-size: clamp(47px, 12vw, 76px); letter-spacing: -3.5px; }
	#hero-section .hero-text { font-size: 15px; }
	#hero-section .hero-stats { gap: 20px; }
	#hero-section .hero-stat { padding-right: 20px; }
	#hero-section .hero-stat strong { font-size: 23px; }
	#hero-section .hero-stage { min-height: 450px; }
	#hero-section .hero-photo { top: 9%; width: 88%; height: 72%; }
	#hero-section .hero-score { right: 5%; bottom: 9%; left: 12%; }
	#hero-section .hero-mini-card { width: 160px; padding: 12px; }
	#hero-section .hero-mini-card-right { right: 0; }
	#game-section .section-head { display: grid; }
	#game-section .game-more { justify-self: start; }
	#game-section .game-media { height: 180px; }
	#spotlight-section .spotlight-media { min-height: 450px; }
	#spotlight-section .spotlight-photo { right: 28px; bottom: 25px; }
	#challenge-section .challenge-item { padding: 17px; grid-template-columns: 52px minmax(0, 1fr) 34px; gap: 13px; }
	#challenge-section .challenge-number { width: 52px; height: 52px; border-radius: 17px; }
	#rank-section .rank-board { padding: 20px; }
	#rank-section .rank-item { grid-template-columns: 35px minmax(0, 1fr) 80px 30px; padding: 11px; gap: 8px; }
	#rank-section .rank-score { font-size: 12px; }
	#cta-section .cta-inner { min-height: auto; padding: 36px 28px; grid-template-columns: 1fr; }
	#cta-section .cta-ball { display: none; }
	footer .footer-top { display: grid; }
	footer .footer-bottom { display: grid; }
}
@media (max-width: 500px) {
	header .header-inner { width: min(92%, 460px); }
	header h1 { font-size: 17px; }
	#hero-section .hero-inner { width: min(92%, 460px); padding-top: 51px; }
	#hero-section h2 { font-size: clamp(43px, 13vw, 62px); letter-spacing: -3px; }
	#hero-section .hero-actions { display: grid; }
	#hero-section .hero-main-link { justify-content: center; }
	#hero-section .hero-sub-link { justify-content: center; }
	#hero-section .hero-stats { gap: 12px; justify-content: space-between; }
	#hero-section .hero-stat { padding-right: 12px; }
	#hero-section .hero-stat strong { font-size: 20px; }
	#hero-section .hero-stat span { font-size: 10px; }
	#hero-section .hero-stage { min-height: 370px; }
	#hero-section .hero-photo { top: 8%; width: 93%; height: 69%; border-radius: 25px; }
	#hero-section .hero-score { right: 2%; bottom: 5%; left: 5%; padding: 14px; border-radius: 16px; }
	#hero-section .hero-score-info strong { font-size: 13px; }
	#hero-section .hero-score-value { gap: 8px; font-size: 18px; }
	#hero-section .hero-mini-card { width: 145px; padding: 10px; border-radius: 16px; }
	#hero-section .hero-mini-card-left { top: 3%; left: 0; }
	#hero-section .hero-mini-card-right { right: 0; bottom: 0; }
	#hero-section .hero-mini-icon { width: 37px; height: 37px; border-radius: 12px; font-size: 16px; }
	#hero-section .hero-mini-text strong { font-size: 11px; }
	#game-section { padding: 80px 0 84px; }
	#game-section .game-grid { grid-template-columns: 1fr; }
	#game-section .game-media { height: 220px; }
	#spotlight-section { padding: 84px 0; }
	#spotlight-section .spotlight-media { min-height: 340px; }
	#spotlight-section .spotlight-photo { right: 0; bottom: 0; border-radius: 24px; }
	#spotlight-section .spotlight-note { right: 10px; bottom: -28px; width: 230px; padding: 15px; border-radius: 18px; }
	#spotlight-section .spotlight-note strong { font-size: 15px; }
	#spotlight-section .spotlight-content { margin-top: 25px; }
	#challenge-section { padding: 84px 0; }
	#challenge-section .challenge-item { grid-template-columns: 45px minmax(0, 1fr); }
	#challenge-section .challenge-number { width: 45px; height: 45px; border-radius: 15px; font-size: 14px; }
	#challenge-section .challenge-arrow { display: none; }
	#challenge-section .challenge-info strong { font-size: 15px; }
	#rank-section { padding: 84px 0; }
	#rank-section .rank-board { padding: 16px; border-radius: 22px; }
	#rank-section .section-head { display: grid; }
	#rank-section .rank-item { min-height: 67px; grid-template-columns: 29px minmax(0, 1fr) 62px; }
	#rank-section .rank-number { font-size: 14px; }
	#rank-section .rank-arrow { display: none; }
	#rank-section .rank-info strong { font-size: 12px; }
	#rank-section .rank-info span { font-size: 10px; }
	#rank-section .rank-score { font-size: 11px; }
	#rank-section .rank-feature { min-height: 370px; padding: 22px; border-radius: 22px; }
	#rank-section .rank-feature h3 { font-size: 25px; }
	#faq-section { padding: 84px 0 90px; }
	#faq-section .faq-question { min-height: 66px; padding: 14px; font-size: 14px; }
	#faq-section .faq-answer p { padding: 0 14px 17px; }
	#cta-section { padding: 28px 0 70px; }
	#cta-section .cta-inner { padding: 29px 22px; border-radius: 23px; }
	footer .footer-nav { gap: 13px; }
}