/* ==========================================================================
   2026 TAEKWONDO SPORTS EVENT - CYBER NEON ORANGE EDITION
   Exact 1:1 Pixel-Perfect Recreation
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --cyber-cyan: #00d2ff;
  --cyber-cyan-bright: #38e1ff;
  --cyber-cyan-glow: rgba(0, 210, 255, 0.5);
  
  --gold-highlight: #ffffff;
  --gold-light: #ffde82;
  --gold-primary: #ff9d00;
  --gold-deep: #cc6600;
  
  --primary-orange: #ff7700;
  
  /* Fonts */
  --font-hero: 'Bebas Neue', 'Rajdhani', sans-serif;
  --font-tech: 'Rajdhani', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: #04070d;
  color: #ffffff;
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background image hero.png */
body {
  background-image: 
    linear-gradient(180deg, rgba(4, 7, 13, 0.25) 0%, rgba(4, 7, 13, 0.1) 40%, rgba(2, 4, 8, 0.85) 100%),
    url('../images/hero.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 6, 12, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.22);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.brand-logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-shield-box {
  height: 42px;
  display: flex;
  align-items: center;
}

.logo-shield-box img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.5));
  transition: transform 0.25s ease;
}

.brand-logo-container:hover .logo-shield-box img {
  transform: scale(1.03);
}

/* Nav Menu */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5cc4ff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}

.nav-link.active {
  color: #ffc233;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.95);
  border-radius: 2px;
}

/* Controls */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon-search {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(10, 18, 32, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: #aed5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.btn-icon-search:hover {
  border-color: var(--cyber-cyan);
  color: #ffffff;
  background: rgba(0, 210, 255, 0.2);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
}

.btn-buy-tickets {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  color: #0a0e17;
  background: linear-gradient(135deg, #ffd358 0%, #ff9500 50%, #e65c00 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(255, 119, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-buy-tickets:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(255, 140, 0, 0.65);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 140, 0, 0.4);
  color: var(--primary-orange);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 22px;
  padding-bottom: 12px;
}

.hero-main-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 580px;
}

/* Title Exact Typography */
.hero-title-group {
  margin-bottom: 2px;
}

.hero-year-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 0.95;
}

.hero-year {
  font-family: var(--font-hero);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #00d2ff;
  text-shadow: 0 0 16px rgba(0, 210, 255, 0.7), 0 0 6px rgba(0, 210, 255, 0.95);
}

.hero-event-word {
  font-family: var(--font-hero);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #ffde82 30%, #ffa600 70%, #cc5f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 119, 0, 0.4));
  text-transform: uppercase;
}

.hero-sports-event-row {
  font-family: var(--font-hero);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  line-height: 0.95;
  background: linear-gradient(180deg, #ffffff 0%, #ffde82 30%, #ffa600 70%, #cc5f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 119, 0, 0.45));
  text-transform: uppercase;
}

.hero-cyber-tagline {
  font-family: var(--font-tech);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e2eeff;
  text-transform: uppercase;
  margin-top: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-cyber-tagline .tag-cyan {
  color: var(--cyber-cyan);
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.7);
}

.hero-cyber-tagline .tag-orange {
  color: var(--primary-orange);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #a6bdd8;
  margin-top: 8px;
  margin-bottom: 18px;
  line-height: 1.45;
  max-width: 480px;
}

/* Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.btn-explore-events {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 6px;
  color: #0a0e17;
  background: linear-gradient(135deg, #ffd358 0%, #ff9500 50%, #e65c00 100%);
  border: 1px solid rgba(255, 235, 150, 0.4);
  box-shadow: 0 4px 14px rgba(255, 119, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.btn-explore-events:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.7);
}

.btn-watch-livestream {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 6px;
  color: #e5f4ff;
  background: rgba(8, 16, 30, 0.75);
  border: 1.5px solid var(--cyber-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4), inset 0 0 10px rgba(0, 210, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-watch-livestream:hover {
  background: rgba(0, 210, 255, 0.2);
  border-color: #70e4ff;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(0, 210, 255, 0.6);
  transform: translateY(-2px);
}

/* Stats Row */
.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 12px;
  max-width: 540px;
}

.stat-box {
  background: rgba(8, 15, 28, 0.85);
  border: 1px solid rgba(255, 140, 0, 0.4);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.stat-box.stat-box-blue {
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

.stat-box:hover {
  transform: translateY(-2px);
}

.stat-icon-wrap {
  font-size: 1.3rem;
  color: #ff9900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.stat-box.stat-box-blue .stat-icon-wrap {
  color: var(--cyber-cyan);
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-title {
  font-family: var(--font-hero);
  font-size: 0.92rem;
  letter-spacing: 0.8px;
  color: #ffffff;
  line-height: 1.1;
}

.stat-subtitle {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  color: var(--cyber-cyan);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.stat-box:not(.stat-box-blue) .stat-subtitle {
  color: #8da4c0;
}

/* ==========================================================================
   UPCOMING EVENTS CYBER HUD PANEL
   ========================================================================== */
.upcoming-hud-wrapper {
  position: relative;
  margin-top: 24px;
  margin-bottom: 8px;
}

.cyber-hud-frame {
  position: relative;
  background: rgba(3, 8, 18, 0.94);
  border: 1.5px solid rgba(0, 210, 255, 0.5);
  border-radius: 10px;
  padding: 18px 24px 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(0, 195, 255, 0.15),
    inset 0 0 20px rgba(0, 180, 255, 0.06);
}

/* Outer Cyber Corner Brackets in Gold */
.hud-corner-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #ff9900;
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}
.hud-corner-bracket.tl { top: -2px; left: -2px; border-width: 3.5px 0 0 3.5px; border-top-left-radius: 8px; }
.hud-corner-bracket.tr { top: -2px; right: -2px; border-width: 3.5px 3.5px 0 0; border-top-right-radius: 8px; }
.hud-corner-bracket.bl { bottom: -2px; left: -2px; border-width: 0 0 3.5px 3.5px; border-bottom-left-radius: 8px; }
.hud-corner-bracket.br { bottom: -2px; right: -2px; border-width: 0 3.5px 3.5px 0; border-bottom-right-radius: 8px; }

/* Hex Background Patterns on Left & Right */
.hud-hex-left, .hud-hex-right {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 100px;
  background-image: radial-gradient(rgba(255, 140, 0, 0.25) 15%, transparent 20%);
  background-size: 12px 12px;
  pointer-events: none;
  opacity: 0.75;
}
.hud-hex-left { left: 8px; }
.hud-hex-right { right: 8px; }

/* Top Center Pill Badge */
.hud-center-wrapper {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hud-pill-tag {
  background: #060b17;
  border: 1.5px solid #ff7700;
  padding: 3px 26px;
  border-radius: 14px;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(255, 119, 0, 0.6), inset 0 0 6px rgba(255, 119, 0, 0.3);
  white-space: nowrap;
}

/* HUD Inner Grid */
.hud-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Inner Gold Card with Outlined Border */
.hud-inner-gold-card {
  background: rgba(6, 12, 24, 0.75);
  border: 1px solid rgba(255, 166, 0, 0.55);
  border-radius: 8px;
  padding: 12px 18px 10px;
  box-shadow: inset 0 0 14px rgba(255, 140, 0, 0.08);
}

.hud-event-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffd24d;
  margin-bottom: 6px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
}

.hud-info-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hud-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #e1edf8;
  line-height: 1.35;
}

.hud-info-item i {
  color: #00d2ff;
  font-size: 0.88rem;
  width: 14px;
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.7));
}

.hud-info-item i.fa-pencil-alt {
  color: #ff9900;
  filter: drop-shadow(0 0 5px rgba(255, 153, 0, 0.7));
}

.hud-info-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* Right HUD Reg Card with Glowing Cyan Border */
.hud-reg-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-reg-card {
  background: rgba(8, 16, 32, 0.88);
  border: 1.5px solid #00d2ff;
  border-radius: 8px;
  padding: 10px 18px;
  position: relative;
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.3), inset 0 0 12px rgba(0, 210, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.25s ease;
}

.hud-reg-card:hover {
  border-color: #5ce6ff;
  box-shadow: 0 0 24px rgba(0, 210, 255, 0.5);
}

.reg-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffd24d;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.3);
}

.reg-card-close-date {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 600;
  color: #00d2ff;
  letter-spacing: 0.6px;
}

.hud-broadcast-meta {
  font-size: 0.72rem;
  color: #8da4c0;
  line-height: 1.35;
}

.channel-name {
  color: #00d2ff;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-family: var(--font-tech);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  width: 100%;
  background: rgba(2, 4, 8, 0.95);
  border-top: 1px solid rgba(255, 140, 0, 0.25);
  padding: 12px 0;
  position: relative;
  z-index: 10;
}

.footer-inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copyright-links {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #8fa5c2;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copyright-links a {
  color: #8fa5c2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copyright-links a:hover {
  color: #ff9900;
}

.footer-dot {
  color: var(--primary-orange);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(14, 22, 38, 0.8);
  border: 1px solid rgba(255, 140, 0, 0.3);
  color: #ffd24d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--primary-orange);
  color: #0b0f19;
  box-shadow: 0 0 14px rgba(255, 140, 0, 0.7);
  transform: translateY(-2px);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.cyber-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 6, 12, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cyber-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cyber-modal-box {
  background: #091122;
  border: 1.5px solid var(--primary-orange);
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 119, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-modal-overlay.active .cyber-modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #8da4c0;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--primary-orange);
}

.modal-title {
  font-family: var(--font-hero);
  font-size: 1.6rem;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #ffffff 0%, #ffde82 30%, #ffa600 70%, #cc5f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  color: #c5d9f0;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(15, 25, 45, 0.9);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

/* ==========================================================================
   REGISTRATION PORTAL STYLES (MATCHING USER SCREENSHOT)
   ========================================================================== */
.registration-page-wrapper {
  padding: 30px 0 50px;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-card-box {
  background: #ffffff;
  color: #1a202c;
  border-radius: 14px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 36px 32px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 210, 255, 0.35);
  border-top: 6px solid #1a237e;
  position: relative;
}

/* Close / Cross Button */
.btn-close-reg {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f4f8;
  border: 1px solid #cbd5e0;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
  z-index: 10;
  cursor: pointer;
}

.btn-close-reg:hover {
  background: #d32f2f;
  border-color: #d32f2f;
  color: #ffffff;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35);
}

.header-section {
  text-align: center;
  margin-bottom: 30px;
}

.reg-main-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 900;
  color: #1a237e;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.reg-sub-title {
  margin: 4px 0;
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.15rem;
  font-family: var(--font-body);
}

.reg-status-badge {
  margin: 4px 0 10px;
  color: #d32f2f;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.championship-details {
  font-size: 0.95rem;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-sep {
  color: #cbd5e0;
}

/* Choice Buttons Grid */
.selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.choice-btn {
  background: #ffffff;
  border: 1.5px solid #d2d6dc;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.choice-btn:hover {
  transform: translateY(-4px);
  border-color: #1a237e;
  box-shadow: 0 8px 24px rgba(26, 35, 126, 0.15);
  background: #f8fafc;
}

.choice-btn.featured:hover {
  border-color: #ff9900;
  box-shadow: 0 8px 24px rgba(255, 153, 0, 0.2);
}

.choice-emoji {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.choice-btn strong {
  font-size: 1.15rem;
  color: #1a202c;
  font-weight: 800;
  font-family: var(--font-title);
}

.choice-help {
  font-size: 0.8rem;
  color: #718096;
}

/* Category indicator (One Single Line) */
.form-category-indicator {
  background: #0d1a33;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 166, 0, 0.4);
  width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
  gap: 10px;
}

.form-category-indicator span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-change-selection {
  background: transparent;
  border: 1px solid #00d2ff;
  color: #00d2ff;
  padding: 4px 10px;
  border-radius: 5px;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-change-selection:hover {
  background: #00d2ff;
  color: #080d19;
}

.btn-change-selection:hover {
  background: #00d2ff;
  color: #080d19;
}

/* Form Styles */
.section-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a237e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #edf2f7;
  border-left: 4px solid #b91c1c;
  padding-left: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 6px;
}

.age-badge {
  background: #ebf8ff;
  color: #2b6cb0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  margin-left: 6px;
  border: 1px solid #bee3f8;
}

.reg-input, .reg-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e0;
  color: #1a202c;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.reg-input:focus, .reg-select:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.system-locked {
  background: #f7fafc !important;
  color: #4a5568 !important;
  cursor: not-allowed;
}

/* Photo Uploader Box */
.photo-uploader-container {
  border: 2px dashed #cbd5e0;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.25s ease;
  margin-top: 6px;
  margin-bottom: 24px;
}

.photo-uploader-container:hover {
  border-color: #1a237e;
  background: #f0f4f8;
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.upload-main-text {
  font-weight: 700;
  color: #2d3748;
  font-size: 0.95rem;
  display: block;
}

.upload-sub-text {
  font-size: 0.78rem;
  color: #718096;
  margin-top: 4px;
}

#client_preview_render {
  max-width: 120px;
  max-height: 140px;
  border-radius: 6px;
  margin: 0 auto;
  border: 2px solid #1a237e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Fee Summary Card */
.fee-summary-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 6px;
  margin-bottom: 24px;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #4a5568;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.fee-val {
  font-weight: 700;
  font-size: 1rem;
  color: #1a202c;
}

.fee-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a237e;
  padding: 12px 0 4px;
}

.fee-total-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: #d32f2f;
}

.free-benefit-badge {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Registration Success Confirmation Card */
.registration-success-card {
  text-align: center;
  padding: 20px 10px 10px;
}

.success-icon {
  font-size: 3.5rem;
  color: #2e7d32;
  margin-bottom: 12px;
}

.success-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a237e;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.success-subtitle {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 24px;
}

.athlete-pass-preview {
  background: #091122;
  color: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1.5px solid var(--primary-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 580px;
  margin: 0 auto 28px;
  text-align: left;
}

.pass-reg-id {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 800;
  color: #00d2ff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pass-athlete-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffd24d;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 140, 0, 0.3);
  padding-bottom: 8px;
}

.pass-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.88rem;
  color: #c9ddf2;
}

.pass-meta-grid strong {
  color: #ffffff;
}

.pass-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-new-reg, .btn-home-return {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-new-reg {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  color: #ffffff;
}

.btn-new-reg:hover {
  background: linear-gradient(135deg, #ff7700 0%, #e65100 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 119, 0, 0.4);
}

/* Submit & Commence Download Button (Matching Reference Screenshot) */
.btn-submit,
.btn-submit-registration {
  display: block;
  width: 100%;
  background: #1a237e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 35, 126, 0.25);
  transition: all 0.25s ease;
  margin-top: 10px;
}

.btn-submit:hover,
.btn-submit-registration:hover {
  background: #0d1b54;
  box-shadow: 0 6px 20px rgba(13, 27, 84, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-submit:active,
.btn-submit-registration:active {
  transform: translateY(0);
}

/* ==========================================================================
   1:1 EVENTS & ANNOUNCEMENTS / FORMS & FORMAT (MATCHING SCREENSHOT)
   ========================================================================== */
.info-page-wrapper {
  padding: 30px 0 60px;
}

/* ==========================================================================
   CYBER-NEON EVENTS & ANNOUNCEMENTS TABLE (HARMONIZED WITH BACKGROUND)
   ========================================================================== */
.info-page-wrapper {
  padding: 30px 0 60px;
}

.info-container {
  max-width: 1040px;
  width: 100%;
}

/* --- Events & Announcements Card (Cyber HUD) --- */
.main-events-card {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(6, 12, 24, 0.92);
  border: 1.5px solid rgba(0, 210, 255, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 195, 255, 0.15);
  backdrop-filter: blur(16px);
}

.events-table-header-box {
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 60%, #c62828 100%);
  padding: 16px 24px;
  border-bottom: 2px solid #ffd24d;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
}

.events-table-title {
  font-family: var(--font-hero), var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.events-content-body {
  background: transparent;
  color: #c9ddf2;
  padding: 24px 28px;
}

/* Table Search & Filter Controls */
.table-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: #c9ddf2;
  font-family: var(--font-tech);
}

.show-entries-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-select {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 210, 255, 0.4);
  background: #0d1a33;
  color: #00d2ff;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.9rem;
  outline: none;
}

.table-select:focus {
  border-color: #00d2ff;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.find-event-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-search-input {
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.9rem;
  color: #ffffff;
  background: #0d1a33;
  outline: none;
  min-width: 200px;
  transition: all 0.2s ease;
}

.table-search-input:focus {
  border-color: #00d2ff;
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.4);
  background: #0a1428;
}

/* Table Header & Rows */
.custom-events-table {
  width: 100%;
}

.table-header-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(0, 210, 255, 0.25);
  font-family: var(--font-tech);
  font-weight: 800;
  color: #00d2ff;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.table-data-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  padding: 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  gap: 16px;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.table-data-row:last-child {
  border-bottom: none;
}

.table-data-row:hover {
  background: rgba(14, 26, 48, 0.85);
  transform: translateX(3px);
}

/* Col Date */
.col-date {
  display: flex;
  flex-direction: column;
}

.event-state-badge {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-active {
  background: rgba(46, 125, 50, 0.25);
  border: 1px solid #4caf50;
  color: #81c784;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.badge-past {
  background: rgba(120, 144, 156, 0.2);
  border: 1px solid #78909c;
  color: #b0bec5;
}

.event-year-text {
  font-family: var(--font-hero);
  font-size: 1.55rem;
  font-weight: 900;
  color: #ff5252;
  margin-top: 4px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.event-month-text {
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-days-text {
  font-size: 0.76rem;
  color: #8da4c0;
}

/* Col Description */
.event-main-name {
  font-family: var(--font-hero), var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffd24d;
  margin: 0 0 4px 0;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.event-sub-details {
  font-size: 0.86rem;
  color: #c9ddf2;
  margin: 0 0 4px 0;
}

.event-sub-details strong {
  color: #ffffff;
}

.event-status-note {
  font-size: 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-active {
  color: #81c784;
  font-weight: 600;
}

.text-concluded {
  color: #718096;
}

/* Col Action */
.col-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.action-btn-register {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  border: 1px solid #00d2ff;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 5px;
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
  transition: all 0.25s ease;
}

.action-btn-register:hover {
  background: var(--primary-orange);
  border-color: #ff9900;
  color: #050a14;
  box-shadow: 0 0 16px rgba(255, 119, 0, 0.6);
  transform: translateY(-2px);
}

.action-pdf-link {
  color: #00d2ff;
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.action-pdf-link:hover {
  color: #ffd24d;
  filter: drop-shadow(0 0 6px rgba(255, 210, 77, 0.6));
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .info-two-col-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .table-header-row {
    display: none;
  }
  .table-data-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }
  .events-content-body {
    padding: 16px 14px;
  }
  .col-action {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

/* Daily Schedule Section */
.events-schedule-section {
  margin-bottom: 40px;
}

/* Daily Schedule Section */
.events-schedule-section {
  margin-bottom: 40px;
}

.schedule-hud-box {
  background: rgba(6, 12, 24, 0.92);
  border: 1.5px solid rgba(0, 210, 255, 0.45);
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
}

.schedule-day-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 140, 0, 0.3);
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.day-tab-btn {
  background: rgba(12, 22, 40, 0.8);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: #c9ddf2;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.day-tab-btn.active,
.day-tab-btn:hover {
  background: var(--primary-orange);
  color: #050a14;
  border-color: #ff9900;
  box-shadow: 0 0 14px rgba(255, 119, 0, 0.5);
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 180px 20px 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(10, 18, 34, 0.7);
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.timeline-row:hover {
  background: rgba(14, 26, 48, 0.9);
  border-color: rgba(0, 210, 255, 0.4);
}

.timeline-row.active-highlight {
  border-color: rgba(255, 140, 0, 0.6);
  background: rgba(20, 30, 52, 0.85);
  box-shadow: inset 0 0 16px rgba(255, 140, 0, 0.1);
}

.timeline-time {
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  color: #00d2ff;
  letter-spacing: 0.5px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 8px var(--primary-orange);
  margin: 0 auto;
}

.timeline-content h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.timeline-content p {
  font-size: 0.84rem;
  color: #8da4c0;
  line-height: 1.4;
}

/* Schedule Footer Action Bar (Fee & Register Button) */
.schedule-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(0, 210, 255, 0.25);
  flex-wrap: wrap;
  gap: 14px;
}

.schedule-fee-badge {
  background: rgba(10, 20, 38, 0.9);
  border: 1.2px solid rgba(255, 166, 0, 0.45);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-schedule-register {
  background: linear-gradient(135deg, #ff7700 0%, #e65100 100%);
  color: #050a14;
  font-family: var(--font-hero);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(255, 119, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  border: 1px solid #ffa600;
}

.btn-schedule-register:hover {
  background: linear-gradient(135deg, #ffa600 0%, #ff6f00 100%);
  color: #000000;
  box-shadow: 0 0 25px rgba(255, 166, 0, 0.8);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
  .schedule-footer-action {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .schedule-fee-badge {
    justify-content: center;
    font-size: 0.84rem;
  }
  .btn-schedule-register {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .featured-event-grid {
    grid-template-columns: 1fr;
  }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .timeline-dot {
    display: none;
  }
}

@media (max-width: 650px) {
  .events-page-title {
    font-size: 2.2rem;
  }
  .featured-tournament-name {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   MOBILE & RESPONSIVE PERFECTION
   ========================================================================== */
@media (max-width: 900px) {
  .hero-main-row {
    grid-template-columns: 1fr;
  }
  .main-navigation {
    display: none;
  }
  .main-navigation.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(5, 9, 18, 0.98);
    border-bottom: 1.5px solid var(--primary-orange);
    padding: 20px 0;
    gap: 16px;
    backdrop-filter: blur(15px);
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 16px;
  }
  .hud-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  .registration-page-wrapper {
    padding: 16px 0 35px;
    display: block;
  }

  .registration-card-box {
    padding: 22px 14px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .reg-main-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .reg-sub-title {
    font-size: 1rem;
  }

  .reg-status-badge {
    font-size: 0.95rem;
  }

  .championship-details {
    flex-direction: column;
    gap: 4px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .detail-sep {
    display: none;
  }

  .selection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .choice-btn {
    padding: 22px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-category-indicator {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-category-indicator span {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-change-selection {
    padding: 3px 8px;
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .reg-input, .reg-select {
    font-size: 16px; /* Prevents auto-zoom on iOS safari */
    padding: 10px 12px;
    box-sizing: border-box;
  }

  .photo-uploader-container {
    padding: 16px 12px;
  }

  .upload-main-text {
    font-size: 0.85rem;
  }

  .btn-submit-registration {
    font-size: 0.95rem;
    padding: 12px 14px;
    letter-spacing: 0.8px;
  }

  /* Hero Section on Mobile */
  .hero-year, .hero-event-word, .hero-sports-event-row {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-box {
    padding: 12px 16px;
  }

  .hud-pill-tag {
    font-size: 0.82rem;
    padding: 2px 16px;
  }

  .hud-event-title {
    font-size: 1.25rem;
  }

  .footer-inner-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-copyright-links {
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .registration-card-box {
    padding: 18px 12px 24px;
  }

  .reg-main-title {
    font-size: 1.35rem;
  }

  .choice-btn strong {
    font-size: 1rem;
  }

  .btn-submit-registration {
    font-size: 0.88rem;
    padding: 12px 10px;
  }
}
