/* ===== IEEE SPORTS TOURNAMENT 2026 — VERSION A ===== */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Tajawal:wght@400;700;900&display=swap');

:root {
  --black: #000;
  --blue: #1a1aff;
  --yellow: #FFD700;
  --white: #fff;
  --red: #FF0000;
  --cyan: #00FFFF;
  --pink: #FFB8FF;
  --orange: #FFB852;
  --green: #25D366;
  --maze-blue: #0000cc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--black);
  font-family: 'Tajawal', sans-serif;
  color: var(--white);
  min-height: 100vh;
   cursor: none;
    overflow-x: hidden;

}


/* ===== CURSOR ===== */
/* ===== CURSOR ===== */
.cursor {
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 6px var(--yellow));
  clip-path: polygon(
    50% 50%,
    100% 28%,
    93% 8%,
    75% 0%,
    50% 0%,
    25% 0%,
    7%  8%,
    0%  28%,
    0%  50%,
    0%  72%,
    7%  92%,
    25% 100%,
    50% 100%,
    75% 100%,
    93% 92%,
    100% 72%
  );
  animation: cursorChomp .85s infinite;
}

@keyframes cursorChomp {
  0%, 100% {
    clip-path: polygon(
      50% 50%,
      100% 28%,
      93% 8%,
      75% 0%,
      50% 0%,
      25% 0%,
      7%  8%,
      0%  28%,
      0%  50%,
      0%  72%,
      7%  92%,
      25% 100%,
      50% 100%,
      75% 100%,
      93% 92%,
      100% 72%
    );
  }
  50% {
    clip-path: polygon(
      50% 50%,
      100% 50%,
      93% 8%,
      75% 0%,
      50% 0%,
      25% 0%,
      7%  8%,
      0%  28%,
      0%  50%,
      0%  72%,
      7%  92%,
      25% 100%,
      50% 100%,
      75% 100%,
      93% 92%,
      100% 50%
    );
  }
}

/* ===== SCANLINES ===== */
.scanlines {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.05) 2px, rgba(0,0,0,.05) 4px);
  pointer-events: none; z-index: 1000;
}

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  z-index: 9998; transition: opacity .5s;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 18px; color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow);
  margin-bottom: 30px;
  animation: blink .8s infinite;
}
.loader-brand {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px; color: var(--cyan);
  margin-top: 14px;
}
.loader-bar { width: 300px; height: 20px; border: 2px solid var(--blue); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--yellow); width: 0; box-shadow: 0 0 10px var(--yellow); }

/* ===== PAGES ===== */
.page { display: none; min-height: 100vh; flex-direction: column; }
.page.active { display: flex; }

/* ===== NAV ===== */
.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr; /* ← هاد بيخلي الوسط دايماً centered */
  align-items: center;
  padding: 14px 20px;
  border-bottom: 2px solid var(--blue);
  background: rgba(0,0,20,.85);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
}

.nav-brand {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--yellow);
  text-shadow: 0 0 8px var(--yellow);
  text-align: center; /* ← ضروري مع الـ grid */
}

.nav-steps {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start; /* ← النقاط تبقى على اليسار */
}
.nav-step { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 1px solid var(--cyan); transition: all .3s; }
.nav-step.active { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); transform: scale(1.3); }
.nav-step.done { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.btn-nav {
  font-family: 'Press Start 2P', monospace; font-size: 9px;
  background: transparent; border: 2px solid var(--blue);
  color: var(--cyan); padding: 10px 14px; cursor: pointer;
  border-radius: 8px; transition: all .2s;
}
.btn-nav:hover { border-color: var(--cyan); color: var(--yellow); }

/* ===== COMMON ===== */
.dots-row { display: flex; gap: 12px; align-items: center; justify-content: center; padding: 6px 0; }
.dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; animation: dotPulse 1s infinite alternate; }
.dot:nth-child(2n) { animation-delay: .5s; }
.dot:nth-child(3n) { animation-delay: .25s; }
.page-title { font-family: 'Press Start 2P', monospace; font-size: clamp(13px,3vw,20px); color: var(--yellow); text-shadow: 0 0 15px var(--yellow); margin-bottom: 6px; }
.page-subtitle { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }
.pixel-corner { position: absolute; width: 14px; height: 14px; background: var(--black); border: 3px solid var(--blue); }
.pixel-corner.tl { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.pixel-corner.tr { top: -3px; right: -3px; border-left: none; border-bottom: none; }
.pixel-corner.bl { bottom: -3px; left: -3px; border-right: none; border-top: none; }
.pixel-corner.br { bottom: -3px; right: -3px; border-left: none; border-top: none; }

/* ===== GHOSTS ===== */
.ghost { width: 44px; height: 50px; animation: ghostFloat 2s ease-in-out infinite; filter: drop-shadow(0 0 8px currentColor); }
.ghost:nth-child(2) { animation-delay: .5s; }
.ghost:nth-child(3) { animation-delay: 1s; }
.ghost:nth-child(4) { animation-delay: 1.5s; }
.ghost svg { width: 100%; height: 100%; }
.ghosts-row { display: flex; justify-content: center; gap: 18px; margin: 16px 0; flex-wrap: wrap; }

/* ===== PAGE 1 — HERO ===== */
#page1 { background: var(--black); align-items: center; justify-content: center; overflow: hidden; position: relative;  }
.maze-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--maze-blue) 2px, transparent 2px), linear-gradient(90deg, var(--maze-blue) 2px, transparent 2px);
  background-size: 60px 60px; opacity: .07;
}
.p1-content { z-index: 2; width: 100%; max-width: 860px; padding: 30px 20px; text-align: center; }
.ieee-logo { font-family: 'Press Start 2P', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 4px; margin-bottom: 8px; text-shadow: 0 0 10px var(--cyan); animation: flicker 3s infinite; }
.title-block { margin: 18px 0; padding: 26px; border: 3px solid var(--blue); border-radius: 12px; background: rgba(0,0,60,.4); box-shadow: 0 0 30px var(--blue); position: relative; }
.title-block::before, .title-block::after { content: ''; position: absolute; width: 18px; height: 18px; background: var(--black); border: 3px solid var(--blue); border-radius: 50%; }
.title-block::before { top: -10px; left: 28px; }
.title-block::after { bottom: -10px; right: 28px; }
.t-sports { font-family: 'Press Start 2P', monospace; font-size: clamp(26px,6vw,54px); color: var(--yellow); text-shadow: 4px 4px 0 #a0800f, 0 0 30px var(--yellow); display: block; }
.t-tournament { font-family: 'Press Start 2P', monospace; font-size: clamp(12px,2.5vw,20px); color: var(--white); letter-spacing: 4px; margin: 6px 0; }
.t-year { font-family: 'Press Start 2P', monospace; font-size: clamp(18px,3.5vw,32px); color: var(--cyan); text-shadow: 0 0 20px var(--cyan); }
.about-block { margin: 18px 0; padding: 18px 22px; border: 2px solid var(--blue); border-radius: 10px; background: rgba(0,0,80,.25); position: relative; }
.about-block::before { content: '◆ ABOUT ◆'; font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--cyan); position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--black); padding: 0 8px; white-space: nowrap; }
.about-text { font-size: 15px; line-height: 2; color: rgba(255,255,255,.85); text-align: center; }
.about-hl { color: var(--yellow); font-weight: 900; }
.about-sports-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0; font-size: 14px; color: rgba(255,255,255,.75); }
.about-date { margin-top: 10px; font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--cyan); }
.about-date span { color: var(--yellow); }
.sports-icons { display: flex; justify-content: center; gap: 12px; margin: 14px 0; flex-wrap: wrap; }
.s-icon { width: 58px; display: flex; flex-direction: column; align-items: center; gap: 4px; border: 2px solid var(--blue); border-radius: 8px; background: rgba(0,0,80,.4); padding: 9px 4px 7px; transition: all .3s; cursor: pointer; }
.s-icon span { font-size: 30px; }
.s-icon small { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--cyan); }
.s-icon:hover { border-color: var(--yellow); transform: scale(1.15); box-shadow: 0 0 14px var(--yellow); }
.btn-start { font-family: 'Press Start 2P', monospace; font-size: 13px; color: var(--black); background: var(--yellow); border: none; padding: 16px 36px; cursor: pointer; border-radius: 4px; margin-top: 18px; box-shadow: 4px 4px 0 #a0800f, 0 0 20px var(--yellow); animation: btnPulse 2s infinite; transition: all .1s; }
.btn-start::before { content: '▶ '; }
.btn-start:hover { background: var(--white); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #a0800f; }
.p1-footer { font-family: 'Press Start 2P', monospace; font-size: 7px; color: rgba(255,255,255,.25); margin-top: 13px; }
.pacman-runner { position: absolute; bottom: 18px; animation: runAcross 12s linear infinite; display: flex; align-items: center; gap: 10px; }
.pacman-icon { width: 32px; height: 32px; background: var(--yellow); border-radius: 50%; clip-path: polygon(0% 15%,100% 0%,100% 100%,0% 85%); animation: chomp .3s infinite; filter: drop-shadow(0 0 8px var(--yellow)); }

/* ===== PAGE 2 — MEMBERSHIP ===== */
#page2 { background: var(--black); align-items: center; justify-content: center; padding: 35px 20px; }
.p2-content { width: 100%; max-width: 580px; text-align: center; }
.form-container { padding: 30px 26px; border: 3px solid var(--blue); border-radius: 12px; background: rgba(0,0,40,.6); box-shadow: 0 0 40px rgba(0,0,255,.3); position: relative; }
.form-group { margin-bottom: 20px; text-align: right; }
.form-label { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--cyan); display: block; margin-bottom: 9px; text-shadow: 0 0 7px var(--cyan); }
.form-input, .form-select {
  width: 100%; background: rgba(0,0,60,.8);
  border: 2px solid var(--blue); border-radius: 4px;
  padding: 13px 14px; color: var(--yellow);
  font-family: 'Tajawal', sans-serif; font-size: 15px;
  transition: all .3s; outline: none; direction: rtl;
}
.form-input::placeholder { color: rgba(255,215,0,.3); }
.form-input:focus, .form-select:focus { border-color: var(--yellow); box-shadow: 0 0 14px rgba(255,215,0,.4); background: rgba(0,0,80,.8); }
.form-select option { background: #000030; color: var(--yellow); }
.form-input.error, .form-select.error { border-color: var(--red) !important; }
.error-msg { font-size: 11px; color: var(--red); margin-top: 4px; display: none; }
.error-msg.show { display: block; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 14px; border: 2px solid var(--blue); border-radius: 4px; background: rgba(0,0,60,.8); cursor: pointer; transition: all .3s; }
.toggle-row:hover { border-color: var(--yellow); }
.toggle-row span { font-size: 15px; color: var(--yellow); }
.toggle-sw { width: 48px; height: 24px; background: var(--blue); border-radius: 12px; position: relative; transition: background .3s; flex-shrink: 0; }
.toggle-sw::after { content: ''; position: absolute; width: 18px; height: 18px; background: white; border-radius: 50%; top: 3px; right: 3px; transition: transform .3s; }
.toggle-sw.on { background: var(--yellow); }
.toggle-sw.on::after { transform: translateX(-24px); }
.ieee-field { display: none; margin-top: 13px; }
.ieee-field.show { display: block; }
.non-member-box { display: none; margin-top: 16px; padding: 20px 18px; border: 2px solid var(--red); border-radius: 8px; background: rgba(255,0,0,.06); text-align: center; animation: fadeSlide .4s ease; }
.non-member-box.show { display: block; }
.nm-icon { font-size: 30px; margin-bottom: 8px; }
.nm-title { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--red); margin-bottom: 12px; line-height: 1.8; }
.nm-text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.9; margin-bottom: 16px; }
.nm-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #000; font-family: 'Press Start 2P', monospace; font-size: 8px; padding: 12px 20px; border-radius: 6px; text-decoration: none; box-shadow: 3px 3px 0 #1a9e4a; transition: all .15s; }
.nm-wa:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #1a9e4a; }
.nm-num { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--cyan); margin-top: 8px; letter-spacing: 2px; }
.btn-next { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--black); background: var(--yellow); border: none; padding: 13px 24px; cursor: pointer; border-radius: 4px; margin-top: 18px; box-shadow: 3px 3px 0 #a0800f; transition: all .1s; width: 100%; }
.btn-next:hover { background: var(--white); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #a0800f; }

/* ===== PAGE 3 — SPORT SELECTION ===== */
#page3 { background: var(--black); padding: 30px 20px; }
.sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.sport-card { border: 3px solid var(--blue); border-radius: 12px; background: rgba(0,0,40,.6); overflow: hidden; cursor: pointer; transition: all .3s; position: relative; }
.sport-card:hover { border-color: var(--yellow); transform: translateY(-4px) scale(1.02); box-shadow: 0 0 28px rgba(255,215,0,.4); }
.sport-card.selected { border-color: var(--yellow); box-shadow: 0 0 38px rgba(255,215,0,.6); background: rgba(255,215,0,.04); }
.sel-badge { position: absolute; top: 10px; left: 10px; background: var(--yellow); color: var(--black); font-family: 'Press Start 2P', monospace; font-size: 7px; padding: 5px 7px; border-radius: 4px; opacity: 0; transition: opacity .3s; }
.sport-card.selected .sel-badge { opacity: 1; }
.sc-header { padding: 22px; text-align: center; }
.sc-emoji { font-size: 48px; display: block; margin-bottom: 10px; transition: transform .3s; }
.sport-card:hover .sc-emoji { transform: scale(1.25) rotate(4deg); }
.sc-name-ar { font-family: 'Press Start 2P', monospace; font-size: 13px; padding: 5px; color: var(--yellow); text-shadow: 0 0 8px var(--yellow); margin-bottom: 4px; }
.sc-name-en { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--cyan); }
.sc-body { padding: 0 18px 18px; border-top: 2px solid rgba(0,0,255,.3); padding-top: 13px; }
.sc-details { display: flex; justify-content: space-around; gap: 8px; }
.sc-detail { text-align: center; flex: 1; }
.sc-detail .dl { font-family: 'Press Start 2P', monospace; font-size: 12px; color: var(--cyan); display: block; margin-bottom: 3px; }
.sc-detail .dv { font-size: 14px; color: var(--white); font-weight: 700; }
.sc-note { text-align: center; margin-top: 8px; font-family: 'Press Start 2P', monospace; font-size: 6px; color: var(--orange); border-top: 1px solid rgba(255,184,82,.2); padding-top: 7px; }

/* ===== PAGE 3.5 — SPORT RULES ===== */
#page35 { background: var(--black); padding: 30px 20px; align-items: center; justify-content: center; }
.rules-container { width: 100%; max-width: 680px; }
.rules-sport-header { text-align: center; margin-bottom: 24px; }
.rules-emoji-big { font-size: 70px; display: block; margin-bottom: 12px; filter: drop-shadow(0 0 15px rgba(255,215,0,.4)); animation: ghostFloat 2s ease-in-out infinite; }
.rules-sport-title { font-family: 'Press Start 2P', monospace; font-size: clamp(14px,3vw,22px); color: var(--yellow); text-shadow: 0 0 20px var(--yellow); margin-bottom: 5px; }
.rules-sport-en { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--cyan); }
.rules-card { border: 3px solid var(--blue); border-radius: 12px; background: rgba(0,0,40,.6); box-shadow: 0 0 30px rgba(0,0,255,.25); position: relative; overflow: hidden; margin-bottom: 16px; }
.rules-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); }
.rules-section { padding: 20px 22px; border-bottom: 1px solid rgba(0,0,255,.2); }
.rules-section:last-child { border-bottom: none; }
.rules-section-title { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--cyan); margin-bottom: 13px; text-shadow: 0 0 7px var(--cyan); }
.rules-items { display: flex; flex-direction: column; gap: 10px; }
.rule-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.88); }
.rule-item .ri { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.rule-item strong { color: var(--yellow); }
.rules-team-type { display: inline-block; padding: 4px 10px; border-radius: 4px; font-family: 'Press Start 2P', monospace; font-size: 12px; margin-bottom: 10px; }
.type-team { background: rgba(255,100,0,.15); border: 1px solid #ff6400; color: #ff8c00; }
.type-solo { background: rgba(0,255,255,.08); border: 1px solid var(--cyan); color: var(--cyan); }
.captain-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,215,0,.1); border: 1px solid var(--yellow); border-radius: 6px; padding: 8px 14px; font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--yellow); margin-top: 8px; }
.rules-btn-row { display: flex; gap: 12px; margin-top: 18px; }
.btn-rules-back { font-family: 'Press Start 2P', monospace; font-size: 9px; background: transparent; border: 2px solid var(--blue); color: var(--cyan); padding: 12px 20px; cursor: pointer; border-radius: 4px; transition: all .2s; flex: 1; }
.btn-rules-back:hover { border-color: var(--cyan); }
.btn-rules-go { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--black); background: var(--yellow); border: none; padding: 12px 20px; cursor: pointer; border-radius: 4px; box-shadow: 3px 3px 0 #a0800f; transition: all .1s; flex: 2; }
.btn-rules-go:hover { background: var(--white); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #a0800f; }
.understood-check { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 2px solid var(--blue); border-radius: 6px; background: rgba(0,0,60,.4); cursor: pointer; transition: all .3s; margin-top: 14px; }
.understood-check:hover { border-color: var(--yellow); }
.check-box { width: 22px; height: 22px; border: 2px solid var(--cyan); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .3s; flex-shrink: 0; }
.check-box.checked { background: var(--yellow); border-color: var(--yellow); color: #000; }
.check-label { font-size: 14px; color: rgba(255,255,255,.85); }

/* ===== PAGE 4 — PERSONAL INFO ===== */
#page4 { background: var(--black); align-items: center; justify-content: center; padding: 30px 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.terms-box { padding: 13px; border: 1px solid rgba(0,100,255,.3); border-radius: 4px; background: rgba(0,0,80,.3); margin-bottom: 13px; font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.8; text-align: right; }
.captain-section { padding: 14px 16px; border: 2px solid var(--yellow); border-radius: 6px; background: rgba(255,215,0,.05); margin-bottom: 16px; }
.captain-toggle-row { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.captain-toggle-row span { font-size: 15px; color: var(--yellow); font-weight: 700; }

/* ===== PAGE 5 — SUCCESS ===== */
#page5 { background: var(--black); align-items: center; justify-content: center; padding: 30px 20px; }
.success-content { text-align: center; max-width: 580px; }
.trophy-anim { font-size: 76px; margin-bottom: 18px; animation: trophyBounce 1s ease-in-out infinite; filter: drop-shadow(0 0 20px var(--yellow)); }
.success-title { font-family: 'Press Start 2P', monospace; font-size: clamp(16px,3.5vw,26px); color: var(--yellow); text-shadow: 0 0 25px var(--yellow); margin-bottom: 13px; animation: successPulse 2s infinite; }
.success-sub { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--cyan); margin-bottom: 26px; line-height: 2; }
.summary-card { padding: 22px; border: 2px solid var(--yellow); border-radius: 8px; background: rgba(255,215,0,.04); text-align: right; margin-bottom: 22px; box-shadow: 0 0 18px rgba(255,215,0,.25); }
.sum-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(0,0,255,.2); font-size: 14px; }
.sum-row:last-child { border-bottom: none; }
.sum-row .sl { color: var(--cyan); font-weight: 700; }
.sum-row .sv { color: var(--yellow); }
.confetti-c { position: fixed; inset: 0; pointer-events: none; z-index: 100; }















/* ===== ANIMATIONS ===== */
@keyframes dotPulse { from { opacity: 1; transform: scale(1); } to { opacity: .3; transform: scale(.6); } }
@keyframes flicker { 0%,95%,100% { opacity: 1; } 96% { opacity: .5; } 98% { opacity: .3; } 99% { opacity: 1; } }
@keyframes btnPulse { 0%,100% { box-shadow: 4px 4px 0 #a0800f, 0 0 20px var(--yellow); } 50% { box-shadow: 4px 4px 0 #a0800f, 0 0 40px var(--yellow); } }
@keyframes ghostFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes runAcross { from { left: -100px; } to { left: calc(100% + 100px); } }
@keyframes chomp { 0%,100% { clip-path: polygon(0% 15%,100% 0%,100% 100%,0% 85%); } 50% { clip-path: polygon(0% 50%,100% 0%,100% 50%,0% 50%); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes trophyBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-14px) scale(1.1); } }
@keyframes successPulse { 0%,100% { text-shadow: 0 0 18px var(--yellow); } 50% { text-shadow: 0 0 45px var(--yellow), 0 0 70px orange; } }
@keyframes confettiFall { from { transform: translateY(0) rotate(0deg); opacity: 1; } to { transform: translateY(100vh) rotate(720deg); opacity: 0; } }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
  .form-container { padding: 22px 16px; }
}




@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}