/* ============================================
   ASP Festival 2026 — style.css
   Color: #0288d1 (sky) / #e3f2fd (ice)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Bebas+Neue&display=swap');

/* ── Variables ── */
:root {
  --sky: #0288d1;
  --sky-dark: #0277bd;
  --sky-deep: #01579b;
  --ice: #e3f2fd;
  --white: #ffffff;
  --mid: #1e6a8a;
  --muted: #5a9ab5;
  --sep: rgba(2, 136, 209, .15);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--sky-deep);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── Custom Cursor ── */
.c-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s;
}

.c-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
  opacity: .5;
}

/* ============================================
   NAVBAR
   ============================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--ice);
  border-bottom: 1px solid var(--sep);
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: box-shadow .3s;
}

#nav.scrolled {
  box-shadow: 0 2px 20px rgba(2, 136, 209, .15);
}

.nav-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo .l1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: var(--sky-deep);
  line-height: 1;
}

.nav-logo .l1 em {
  color: var(--sky);
  font-style: normal;
}

.nav-logo .l2 {
  font-size: .58rem;
  color: var(--mid);
  letter-spacing: .1em;
  opacity: .85;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .1rem;
}

.nav-links a {
  display: block;
  color: var(--mid);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .5rem .8rem;
  border-radius: 4px;
  position: relative;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .8rem;
  right: .8rem;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-links a:hover {
  color: var(--sky);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sky-deep);
  border-radius: 2px;
  transition: .3s;
}

.mob {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: rgba(227, 242, 253, .98);
  z-index: 790;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: .4rem;
  backdrop-filter: blur(10px);
}

.mob.open {
  display: flex;
}

.mob a {
  color: var(--sky-deep);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .85rem 0;
  border-bottom: 1px solid var(--sep);
  transition: color .2s;
}

.mob a:hover {
  color: var(--sky);
}


.nav-logo .l1 .ball {
  display: inline-block;
  animation: ballSpin 3s linear infinite;
}

@keyframes ballSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* ============================================
   HERO SLIDER
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--sky-deep);
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s ease;
}

.slide.on {
  opacity: 1;
  animation: kb 8s ease forwards;
}

/* グラデーション仮背景 — 写真に差し替える場合は background-image: url(img/slideX.jpg) */
.slide:nth-child(1) {
  background: linear-gradient(155deg, #01579b 0%, #0277bd 50%, #0288d1 100%);
}

.slide:nth-child(2) {
  background: linear-gradient(150deg, #013e6e 0%, #0277bd 55%, #29b6f6 100%);
}

.slide:nth-child(3) {
  background: linear-gradient(140deg, #012d52 0%, #0288d1 60%, #4fc3f7 100%);
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 49px,
      rgba(255, 255, 255, .015) 49px, rgba(255, 255, 255, .015) 50px);
}

@keyframes kb {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(1, 55, 100, .45) 0%, rgba(1, 55, 100, .1) 60%, transparent 100%),
    linear-gradient(to top, rgba(1, 45, 82, .3) 0%, transparent 45%);
}

.hero-body {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(1.5rem, 7vw, 7rem);
  transform: translateY(-54%);
  max-width: 660px;
}

.hero-body>* {
  opacity: 0;
  transform: translateY(28px);
  animation: hIn .9s var(--ease-spring) forwards;
}

.hero-body>*:nth-child(1) {
  animation-delay: .15s;
}

.hero-body>*:nth-child(2) {
  animation-delay: .28s;
}

.hero-body>*:nth-child(3) {
  animation-delay: .38s;
}

.hero-body>*:nth-child(4) {
  animation-delay: .50s;
}

.hero-body>*:nth-child(5) {
  animation-delay: .62s;
}

.badge-rainbow {
  background: linear-gradient(90deg, #f44336, #ff9800, #4caf50, #2196f3, #9c27b0, #e91e63);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rbShift 4s linear infinite;
}

@keyframes hIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.h-badge {
  display: inline-block;
  background: var(--ice);
  color: var(--sky-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  padding: .4rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.h-eye {
  font-size: clamp(.7rem, 1.3vw, .88rem);
  color: var(--ice);
  letter-spacing: .2em;
  font-weight: 300;
  margin-bottom: .5rem;
  opacity: .85;
}

.h-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 9.5vw, 7.8rem);
  line-height: .92;
  letter-spacing: .06em;
  color: var(--white);
}

.h-title .a {
  color: var(--ice);
}

.h-title .yr {
  display: block;
  font-size: .52em;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .1em;
}

.h-meta {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hm {
  display: flex;
  flex-direction: column;
}

.hm .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}

.hm .l {
  font-size: .58rem;
  color: var(--ice);
  letter-spacing: .14em;
  opacity: .85;
  margin-top: .15rem;
}

.hm-sep {
  width: 1px;
  background: rgba(255, 255, 255, .22);
  height: 38px;
}

.h-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.8rem;
  padding: .9rem 2rem;
  background: var(--sky);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  transition: background .3s;
  box-shadow: 0 8px 28px rgba(2, 136, 209, .4);
}

.h-cta:hover {
  background: var(--sky-dark);
}

.h-cta svg {
  transition: transform .3s;
}

.h-cta:hover svg {
  transform: translateX(5px);
}

.h-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 3;
}

.h-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
  transition: width .4s, background .4s;
}

.h-dot.on {
  width: 30px;
  background: var(--ice);
}

.h-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .4);
  font-size: .58rem;
  letter-spacing: .2em;
  animation: scrollFloat 2.5s ease-in-out infinite;
}

.h-scroll::before {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(2, 136, 209, .7), transparent);
}

@keyframes scrollFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.sec {
  padding: 6rem clamp(1.2rem, 5vw, 2.5rem);
}

.sec-a {
  background: var(--white);
}

.sec-b {
  background: var(--ice);
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.s-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}

.s-en {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .78rem;
  letter-spacing: .36em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.s-ttl {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--sky-deep);
  display: inline-block;
  position: relative;
  padding-bottom: .85rem;
}

.s-ttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  background: var(--sky);
  border-radius: 2px;
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transition: opacity .85s ease, transform .85s var(--ease-spring);
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

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

/* ============================================
   GREETING
   ============================================ */
.greet {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: center;
}

.g-num {
  text-align: center;
}

.g-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 11vw, 8.5rem);
  line-height: 1;
  display: inline-block;
  background: linear-gradient(135deg, #f44336, #ff9800, #4caf50, #2196f3, #9c27b0, #e91e63);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rbShift 4s linear infinite;
}

@keyframes rbShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.g-spark {
  font-size: 1.5rem;
  display: block;
  margin-bottom: .3rem;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.g-sub {
  font-size: .72rem;
  color: var(--mid);
  letter-spacing: .2em;
  margin-top: .3rem;
}

.g-text h2 {
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: var(--sky-deep);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.g-text h2 b {
  color: var(--sky);
  font-weight: 900;
}

.g-bar {
  width: 56px;
  height: 3px;
  background: var(--sky);
  margin: .9rem 0 1.1rem;
  border-radius: 2px;
}

.g-text p {
  font-size: .93rem;
  line-height: 2.2;
  color: #1a4a6e;
  font-weight: 400;
  letter-spacing: .06em;
}

.g-text p strong {
  color: var(--sky);
  font-weight: 700;
}

/* ============================================
   OVERVIEW
   ============================================ */
.ov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.ov-card {
  background: var(--white);
  border: 1px solid var(--sep);
  border-radius: 16px;
  padding: 1.6rem 1rem;
  text-align: center;
  transition: transform .4s var(--ease-spring), border-color .3s, box-shadow .3s;
}

.ov-card:hover {
  transform: translateY(-7px);
  border-color: var(--sky);
  box-shadow: 0 16px 40px rgba(2, 136, 209, .13);
}

.ov-ico {
  font-size: 2.1rem;
  margin-bottom: .65rem;
}

.ov-lbl {
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--sky);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.ov-val {
  font-size: .92rem;
  font-weight: 700;
  color: var(--sky-deep);
  line-height: 1.45;
}

.ov-btn {
  text-align: center;
  margin-top: 2rem;
}

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2.4rem;
  border: 2px solid var(--sky);
  color: var(--sky);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  border-radius: 50px;
  transition: all .3s var(--ease-spring);
}

.btn-out:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 136, 209, .3);
}

/* ============================================
   PREVIOUS (YouTube)
   ============================================ */
.yt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.yt-card {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--sep);
  box-shadow: 0 4px 24px rgba(2, 136, 209, .1);
}

.yt-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.yt-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255, 255, 255, .02) 14px, rgba(255, 255, 255, .02) 28px);
}

.yt-play {
  width: 56px;
  height: 56px;
  background: rgba(255, 0, 0, .88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform .25s var(--ease-spring);
}

.yt-thumb:hover .yt-play {
  transform: scale(1.12);
}

.yt-play::after {
  content: '';
  border-left: 20px solid var(--white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.yt-info {
  padding: 1rem 1.4rem;
  background: var(--white);
}

.yt-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: .2rem;
}

.yt-sub {
  font-size: .75rem;
  color: var(--muted);
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  background: #ff0000;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 6px 20px rgba(255, 0, 0, .3);
}

.yt-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.yt-ico {
  width: 18px;
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yt-ico::after {
  content: '';
  border-left: 6px solid #ff0000;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 1px;
}

/* ============================================
   PROGRAMS
   ============================================ */
.prog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.prog-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform .45s var(--ease-spring), box-shadow .45s;
}

.prog-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
}

.prog-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .65s ease;
}

.prog-card:hover .prog-bg {
  transform: scale(1.08);
}

.prog-card:nth-child(1) .prog-bg {
  background: linear-gradient(170deg, var(--sky-deep) 0%, var(--sky-dark) 55%, var(--sky) 100%);
}

.prog-card:nth-child(2) .prog-bg {
  background: linear-gradient(170deg, #012d52 0%, #0277bd 55%, #29b6f6 100%);
}

.prog-card:nth-child(3) .prog-bg {
  background: linear-gradient(170deg, #01324a 0%, #0277bd 45%, var(--ice) 100%);
}

.prog-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255, 255, 255, .025) 29px, rgba(255, 255, 255, .025) 30px);
}

.prog-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(1, 50, 74, .92) 100%);
}

.prog-body {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
}

.prog-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: .8rem;
  text-transform: uppercase;
  background: var(--ice);
  color: var(--sky-deep);
}

.prog-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .07em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .6rem;
}

.prog-desc {
  font-size: .8rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.prog-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .73rem;
  font-weight: 700;
  color: var(--ice);
  letter-spacing: .1em;
  transition: gap .25s;
}

.prog-card:hover .prog-arrow {
  gap: .8rem;
}

/* ============================================
   TEAMS
   ============================================ */
.team-tabs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.tt {
  padding: .65rem 1.8rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  border: 2px solid var(--sep);
  background: var(--white);
  color: var(--mid);
  transition: all .25s;
  letter-spacing: .06em;
}

.tt.on {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
  color: var(--white);
}

.tt:hover:not(.on) {
  border-color: var(--sky);
  color: var(--sky);
}

.tp {
  display: none;
}

.tp.on {
  display: block;
}

.div-label {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.div-label::before,
.div-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sep);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 1rem;
}

.tc {
  background: var(--white);
  border: 1px solid var(--sep);
  border-radius: 14px;
  padding: 1rem .9rem;
  text-align: center;
  transition: all .35s var(--ease-spring);
}

.tc:hover {
  border-color: var(--sky);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(2, 136, 209, .13);
}

.tc-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ice);
  border: 1px solid var(--sep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  font-size: 1.5rem;
}

.tc-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--sky-deep);
  line-height: 1.3;
}

.tc-pref {
  font-size: .67rem;
  color: var(--muted);
  margin-top: .25rem;
}

.team-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .8rem;
  color: var(--muted);
}

/* ============================================
   RESULTS
   ============================================ */
.res-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rt {
  padding: .55rem 1.6rem;
  border: 2px solid var(--sep);
  background: var(--white);
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  color: var(--mid);
}

.rt.on,
.rt:hover {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
  color: var(--white);
}

.rp {
  display: none;
}

.rp.on {
  display: block;
}

.r-coming {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border: 1px dashed var(--sep);
  border-radius: 16px;
}

.r-coming .ico {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.r-coming h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: .6rem;
}

.r-coming p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}

.r-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.rmatch {
  background: var(--white);
  border: 1px solid var(--sep);
  border-radius: 12px;
  padding: .9rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  transition: box-shadow .25s;
}

.rmatch:hover {
  box-shadow: 0 6px 22px rgba(2, 136, 209, .12);
}

.rm-team {
  font-size: .9rem;
  font-weight: 700;
  color: var(--sky-deep);
}

.rm-team.r {
  text-align: right;
}

.rm-score {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--sky-deep);
  color: var(--white);
  border-radius: 10px;
  padding: .45rem 1.1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .08em;
}

.rm-score .vs {
  font-size: .75rem;
  opacity: .55;
}

/* ============================================
   SAFETY BAND
   ============================================ */
.safety-band {
  background: var(--sky-deep);
  padding: 3.5rem clamp(1.2rem, 5vw, 2.5rem);
}

.safety-in {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.s-card {
  background: rgba(227, 242, 253, .08);
  border: 1px solid rgba(227, 242, 253, .18);
  border-radius: 14px;
  padding: 1.8rem;
  text-align: center;
  transition: background .3s, transform .3s var(--ease-spring);
}

.s-card:hover {
  background: rgba(227, 242, 253, .14);
  transform: translateY(-4px);
}

.s-ico {
  font-size: 2.4rem;
  margin-bottom: .8rem;
}

.s-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: .5rem;
}

.s-card p {
  font-size: .8rem;
  color: rgba(227, 242, 253, .72);
  line-height: 1.7;
}

/* ============================================
   VENUE
   ============================================ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.v-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: 1rem;
}

.v-addr {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--ice);
  border-left: 4px solid var(--sky);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.85;
}

.v-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 44px rgba(0, 0, 0, .1);
  border: 1px solid var(--sep);
}

.v-map iframe {
  display: block;
  width: 100%;
  height: 370px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ice);
  border-top: 1px solid var(--sep);
}

.foot-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.2rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3.5rem;
}

.f-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: .1em;
  color: var(--sky-deep);
  line-height: 1;
  margin-bottom: .4rem;
}

.f-logo em {
  color: var(--sky);
  font-style: normal;
}

.f-brand p {
  font-size: .78rem;
  color: var(--mid);
  line-height: 1.85;
  margin-top: .6rem;
}

.f-sns {
  display: flex;
  gap: .6rem;
  margin-top: .9rem;
}

.f-si {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  transition: transform .25s var(--ease-spring);
}

.f-si:hover {
  transform: translateY(-3px) scale(1.08);
}

.f-si.fb {
  background: #1877f2;
}

.f-si.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
}

.f-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.f-col ul a {
  font-size: .78rem;
  color: var(--mid);
  transition: color .2s;
}

.f-col ul a:hover {
  color: var(--sky);
}

.f-contact {
  font-size: .82rem;
  line-height: 1.95;
  color: var(--mid);
}

.f-contact a {
  color: var(--mid);
  transition: color .2s;
}

.f-contact a:hover {
  color: var(--sky);
}

.foot-bot {
  border-top: 1px solid var(--sep);
  padding: 1.2rem clamp(1.2rem, 5vw, 2.5rem);
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .ham {
    display: flex;
  }

  .greet,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .prog-wrap {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .safety-in {
    grid-template-columns: 1fr;
  }

  .ov-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sec {
    padding: 3.5rem 1.2rem;
  }

  .h-title {
    font-size: 3.8rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rmatch {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rm-team.r {
    text-align: center;
  }

  .rm-score {
    justify-content: center;
  }

  .g-num {
    display: none;
  }

  .h-scroll {
    display: none;
  }
}