/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-input: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --success: #22c55e;
  --danger: #ef4444;
  --border: #2a2a2a;
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.5rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(245, 158, 11, 0.2);
}

.hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--accent);
  margin-top: 0.5rem;
}

.hero-year {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: rgba(245, 158, 11, 0.08);
  line-height: 1;
  margin: -1rem 0 1rem;
}

.hero-details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-detail svg {
  color: var(--accent);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--text-muted);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--accent) 0%, #d97706 100%);
  padding: 1.5rem 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

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

.stat-big {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.stat-small {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 158, 11, 0.05);
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-success {
  background: var(--success);
  color: #000;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: linear-gradient(180deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}

/* ===== EVENT CARDS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-card) 0%, transparent 60%);
}

.card-body {
  padding: 1.5rem 2rem 2rem;
}

.info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: var(--accent);
}

.info-card ul {
  list-style: none;
}

.info-card li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.05rem;
}

.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ===== CARD DATE BADGE & META ===== */
.card-date-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.card-fee {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.card-schedule {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-weight-classes {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(245, 158, 11, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.card-weight-classes p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-weight-classes strong {
  color: var(--accent);
}

/* ===== PRIZES SECTION ===== */
.prizes-section {
  margin-top: 4rem;
}

.prizes-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--accent);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.prize-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.prize-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.prize-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.prize-row.gold {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.prize-row.silver {
  background: rgba(192, 192, 192, 0.1);
  color: #c0c0c0;
}

.prize-row.bronze {
  background: rgba(205, 127, 50, 0.1);
  color: #cd7f32;
}

.medal-icon {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.prize-extra {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ===== CROSSLIFTING FORMAT ===== */
.crosslifting-details {
  margin-top: 4rem;
}

.section-subtitle-left {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 2rem;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.format-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.format-date {
  color: var(--accent);
  font-size: 0.9rem;
}

.format-info {
  margin-bottom: 1.25rem;
}

.format-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.workout-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.workout-box h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.workout-format {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.workout-box ul {
  list-style: none;
  margin-bottom: 0.75rem;
}

.workout-box li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.workout-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.workout-weights {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.workout-weights span {
  padding: 0.3rem 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 4px;
  font-weight: 600;
}

.workout-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-1 {
  background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80');
}

.parallax-2 {
  background-image: url('https://images.unsplash.com/photo-1534368959876-26bf04f2c947?w=1920&q=80');
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.parallax-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
}

.parallax-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* ===== SPLIT SECTION (RULES + VENUE) ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.rules-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.rules-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: var(--accent);
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rule {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rule-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 1.8rem;
}

.rule p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ===== VENUE CARD ===== */
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.venue-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.venue-info {
  padding: 1.5rem 2rem 2rem;
}

.venue-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent);
}

.venue-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.venue-phone {
  color: var(--accent) !important;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.map-container iframe {
  border-radius: 8px;
}

/* ===== FORM ===== */
.form {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder {
  color: #555;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: #1a1a1a;
  color: #f5f5f5;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 450px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.payment-amount {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.payment-amount strong {
  color: var(--accent);
  font-size: 1.3rem;
}

.payment-qr {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.payment-qr img {
  width: 200px;
  height: 200px;
}

.payment-qr p {
  color: #333;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.payment-divider {
  text-align: center;
  position: relative;
  margin: 1.25rem 0;
}

.payment-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.payment-divider span {
  position: relative;
  background: var(--bg-card);
  padding: 0 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.upi-id-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.upi-id-box span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.upi-id-box strong {
  flex: 1;
  color: var(--accent);
}

.btn-copy {
  padding: 0.3rem 0.75rem;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== SUCCESS ===== */
.success-content {
  text-align: center;
}

.success-icon {
  margin-bottom: 1rem;
}

.success-details {
  text-align: left;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.success-details p {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.success-details strong {
  color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer strong {
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ===== ADMIN ===== */
.admin-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.admin-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.admin-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.login-box {
  max-width: 400px;
  margin: 4rem auto;
  text-align: center;
}

.login-box h2 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.toolbar input,
.toolbar select {
  padding: 0.6rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.toolbar input:focus,
.toolbar select:focus {
  outline: none;
  border-color: var(--accent);
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: var(--bg-card);
}

th {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tr:hover td {
  background: var(--bg-card-hover);
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-paid {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.status-unpaid {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}

.action-btns {
  display: flex;
  gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .prizes-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 1.5rem;
  }

  .hero-details {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .toolbar {
    flex-direction: column;
  }

  .toolbar input,
  .toolbar select {
    width: 100%;
  }

  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 0.6rem 0.75rem;
  }
}
