/* =====================================================
   XRC COMPETITION PAGES STYLESHEET
   X Robotics Challenge - All Competition Pages
   ===================================================== */

/* =====================================================
   XRC PREMIUM HERO SECTION - MODERN DESIGN
   ===================================================== */

.xrc-hero-premium {
  background: #ffffff;
  padding: 120px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.xrc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.xrc-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.xrc-main-title .year-highlight {
  display: block;
  color: #1a1a2e;
}

.xrc-slogan {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C8102E;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.xrc-hero-content .xrc-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.xrc-stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.xrc-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9fa;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
}

.xrc-stat-item .stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #C8102E, #ff6b6b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.xrc-stat-item .stat-info {
  display: flex;
  flex-direction: column;
}

.xrc-stat-item .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
}

.xrc-stat-item .stat-text {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.xrc-hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #C8102E;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: #a00d24;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-schedule:hover {
  border-color: #C8102E;
  color: #C8102E;
}

/* XRC Hero Visual Section */
.xrc-hero-visual {
  position: relative;
}

.xrc-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.xrc-image-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.countdown-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.countdown-overlay .countdown-label {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.countdown-display {
  display: flex;
  gap: 1rem;
}

.countdown-block {
  text-align: center;
}

.countdown-block .countdown-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #C8102E;
  line-height: 1;
}

.countdown-block .countdown-unit {
  font-size: 0.7rem;
  color: #888;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.25rem;
  display: block;
}

/* Responsive for XRC Premium Hero */
@media (max-width: 992px) {
  .xrc-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .xrc-main-title {
    font-size: 2.5rem;
  }
  
  .xrc-stats-row {
    flex-wrap: wrap;
  }
  
  .xrc-image-container img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .xrc-hero-premium {
    padding: 100px 0 60px;
  }
  
  .xrc-main-title {
    font-size: 2rem;
  }
  
  .xrc-stats-row {
    gap: 1rem;
  }
  
  .xrc-stat-item {
    padding: 0.5rem 1rem;
  }
  
  .xrc-hero-buttons {
    flex-direction: column;
  }
  
  .countdown-overlay {
    bottom: 15px;
    right: 15px;
    padding: 1rem;
  }
  
  .countdown-block .countdown-num {
    font-size: 1.75rem;
  }
}

/* =====================================================
   XRC ORIGINAL HERO (KEPT FOR LEGACY)
   ===================================================== */

.xrc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0f1f3d 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.xrc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.xrc-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(200,16,46,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.xrc-hero .section-container {
  position: relative;
  z-index: 2;
}

.xrc-hero-content {
  max-width: 700px;
}

.xrc-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.xrc-logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 40px rgba(200,16,46,0.4);
}

.xrc-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
}

.xrc-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.xrc-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #C8102E;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.xrc-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.xrc-hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.xrc-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.xrc-hero-btns .btn-primary {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.xrc-hero-btns .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
}

.xrc-hero-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* =====================================================
   XRC DIVISIONS SECTION
   ===================================================== */

.xrc-divisions {
  padding: 100px 0;
  background: #f8f9fa;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .divisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .divisions-grid {
    grid-template-columns: 1fr;
  }
}

.division-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.division-card.featured {
  border: 2px solid #C8102E;
  transform: scale(1.02);
}

.division-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #C8102E;
  color: #fff;
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.division-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.division-badge.kid-color { background: #008080; }
.division-badge.mid-color { background: #1E5AA8; }
.division-badge.pro-color { background: #C8102E; }
.division-badge.max-color { background: #8B0000; }

.division-card h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.division-ages {
  font-size: 0.9rem;
  color: #C8102E;
  font-weight: 600;
  margin-bottom: 1rem;
}

.division-card > p:not(.division-ages) {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.division-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.division-features li {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #eee;
}

.division-features li:last-child {
  border-bottom: none;
}

.division-features i {
  color: #28a745;
  font-size: 0.8rem;
}

.division-card .btn-outline {
  width: 100%;
  justify-content: center;
}

/* =====================================================
   GAME PREVIEW SECTION
   ===================================================== */

.game-preview {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.game-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .game-preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.game-preview-content {
  color: #fff;
}

.season-tag {
  display: inline-block;
  background: rgba(200,16,46,0.2);
  color: #C8102E;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.game-preview-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.game-tagline {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.game-preview-content > p:not(.game-tagline) {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.game-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.highlight-item i {
  color: #C8102E;
  font-size: 1.25rem;
}

.highlight-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.game-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.game-btns .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.game-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

.game-preview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.game-preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-overlay i {
  font-size: 5rem;
  color: #fff;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0,0,0,0.5);
}

.play-overlay:hover i {
  transform: scale(1.1);
}

/* =====================================================
   SEASON TIMELINE
   ===================================================== */

.season-timeline {
  padding: 100px 0;
  background: #fff;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.timeline-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 160px;
  flex: 0 1 180px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-item.active {
  border-color: #C8102E;
  background: linear-gradient(135deg, rgba(200,16,46,0.05), rgba(200,16,46,0.1));
}

.timeline-date {
  margin-bottom: 1rem;
}

.timeline-date .month {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #C8102E;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.timeline-content h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

/* =====================================================
   XRC AWARDS
   ===================================================== */

.xrc-awards {
  padding: 100px 0;
  background: #f8f9fa;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.award-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.award-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.award-card h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.award-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
}

/* =====================================================
   XRC SCHOLARSHIPS
   ===================================================== */

.xrc-scholarships {
  padding: 100px 0;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
}

.scholarship-box {
  text-align: center;
  color: #fff;
}

.scholarship-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.scholarship-content > p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.scholarship-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.scholarship-logos span {
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

/* =====================================================
   XRC CTA SECTION
   ===================================================== */

.xrc-cta {
  padding: 100px 0;
  background: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.cta-card h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.cta-card > p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cta-card .btn-primary {
  padding: 0.875rem 1.5rem;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS FOR XRC HERO
   ===================================================== */

@media (max-width: 992px) {
  .xrc-hero h1 {
    font-size: 2.5rem;
  }
  .xrc-logo-text {
    font-size: 2.5rem;
  }
  .xrc-hero-stats {
    gap: 2rem;
  }
  .hero-stat .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .xrc-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .xrc-hero h1 {
    font-size: 2rem;
  }
  .xrc-logo-text {
    font-size: 2rem;
  }
  .xrc-tagline {
    font-size: 1.2rem;
  }
  .xrc-description {
    font-size: 1rem;
  }
  .xrc-hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .hero-stat {
    text-align: left;
  }
  .xrc-hero-btns {
    flex-direction: column;
  }
  .xrc-hero-btns .btn-primary,
  .xrc-hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .game-preview-content h2 {
    font-size: 2rem;
  }
}

/* =====================================================
   XRC PAGE HERO
   ===================================================== */

.xrc-page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 160px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.xrc-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.xrc-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.page-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.page-hero-content .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero-content .breadcrumb a:hover {
  color: #C8102E;
}

.page-hero-content .breadcrumb i {
  font-size: 0.65rem;
  opacity: 0.5;
}

.page-hero-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.page-hero-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Game Manual Hero */
.game-hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
}

.game-hero .game-title-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.game-hero .season-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200,16,46,0.4), rgba(200,16,46,0.2));
  color: #fff;
  padding: 0.65rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  border: 1px solid rgba(200,16,46,0.4);
  text-shadow: 0 2px 10px rgba(200,16,46,0.3);
}

.game-hero h1 {
  font-size: 5rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #C8102E 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 30px rgba(200,16,46,0.4));
}

.game-hero .game-subtitle {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  letter-spacing: 1px;
}

/* =====================================================
   REGISTRATION STEPS
   ===================================================== */

.registration-steps {
  padding: 80px 0;
  background: #f8f9fa;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex: 0 0 200px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C8102E, #a50d26);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.step-arrow {
  color: #C8102E;
  font-size: 1.5rem;
  padding: 0 1rem;
}

@media (max-width: 992px) {
  .step-arrow {
    display: none;
  }
  .step-card {
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .step-card {
    flex: 0 0 100%;
  }
}

/* =====================================================
   DIVISION SELECTION
   ===================================================== */

.division-selection {
  padding: 80px 0;
  background: #fff;
}

.division-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .division-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .division-options {
    grid-template-columns: 1fr;
  }
}

.division-option {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.division-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.division-option.featured {
  border-color: #C8102E;
  transform: scale(1.02);
}

.division-option.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #C8102E;
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}

.division-header {
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.division-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.division-ages {
  font-size: 0.9rem;
  opacity: 0.9;
}

.kid-bg { background: linear-gradient(135deg, #008080, #006666); }
.mid-bg { background: linear-gradient(135deg, #1E5AA8, #164785); }
.pro-bg { background: linear-gradient(135deg, #C8102E, #a50d26); }
.max-bg { background: linear-gradient(135deg, #8B0000, #6b0000); }

.division-body {
  padding: 2rem;
}

.division-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.division-price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
}

.division-price .period {
  display: block;
  font-size: 0.85rem;
  color: #666;
}

.division-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.division-includes li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.division-includes li:last-child {
  border-bottom: none;
}

.division-includes i {
  color: #28a745;
  font-size: 0.85rem;
}

.division-body .btn-primary {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

/* =====================================================
   TEAM REQUIREMENTS
   ===================================================== */

.team-requirements {
  padding: 80px 0;
  background: #f8f9fa;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

.requirement-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C8102E, #a50d26);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.requirement-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.requirement-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* =====================================================
   REGISTRATION DEADLINES
   ===================================================== */

.registration-deadlines {
  padding: 80px 0;
  background: #fff;
}

.deadlines-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 3rem;
  border-radius: 20px;
  color: #fff;
}

.deadlines-box h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.deadlines-box h2 i {
  color: #C8102E;
}

.deadlines-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deadline-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border-left: 4px solid transparent;
}

.deadline-item.active {
  background: rgba(200,16,46,0.1);
  border-left-color: #C8102E;
}

.deadline-date {
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 120px;
}

.deadline-info {
  flex: 1;
}

.deadline-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.deadline-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.deadline-status {
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.deadline-status.passed {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.deadline-status.current {
  background: #C8102E;
  color: #fff;
}

.deadline-status.upcoming {
  background: rgba(40,167,69,0.2);
  color: #28a745;
}

@media (max-width: 768px) {
  .deadline-item {
    flex-wrap: wrap;
  }
  .deadline-date {
    min-width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* =====================================================
   REGISTRATION FAQ
   ===================================================== */

.registration-faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-item h4 i {
  color: #C8102E;
  margin-top: 2px;
}

.faq-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  padding-left: 1.75rem;
}

/* =====================================================
   REGISTRATION CTA
   ===================================================== */

.registration-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
}

.registration-cta .cta-box {
  text-align: center;
  color: #fff;
}

.registration-cta .cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.registration-cta .cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #C8102E;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* =====================================================
   EVENT FINDER
   ===================================================== */

.event-finder {
  padding: 40px 0 60px;
  background: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.finder-box {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.finder-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.finder-box h2 i {
  color: #C8102E;
}

.finder-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.finder-input {
  flex: 2;
  min-width: 200px;
}

.finder-input input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.finder-input input:focus {
  outline: none;
  border-color: #C8102E;
}

.finder-select {
  flex: 1;
  min-width: 150px;
}

.finder-select select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  cursor: pointer;
}

.finder-select select:focus {
  outline: none;
  border-color: #C8102E;
}

.finder-form .btn-primary {
  padding: 1rem 2rem;
}

/* =====================================================
   UPCOMING EVENTS
   ===================================================== */

.upcoming-events {
  padding: 60px 0 80px;
  background: #f8f9fa;
}

.events-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #e5e5e5;
}

.tab-btn.active {
  background: #C8102E;
  color: #fff;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.event-card.featured {
  border: 2px solid #C8102E;
  background: linear-gradient(135deg, rgba(200,16,46,0.02), rgba(200,16,46,0.05));
}

.event-card.world {
  border: 2px solid gold;
  background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,215,0,0.1));
}

.event-date {
  text-align: center;
  min-width: 80px;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.event-date .month {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #C8102E;
  text-transform: uppercase;
}

.event-date .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.event-date .year {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

.event-date.world-date {
  background: linear-gradient(135deg, gold, #ffd700);
  color: #1a1a2e;
}

.event-date.world-date .month,
.event-date.world-date .day,
.event-date.world-date .year {
  color: #1a1a2e;
}

.event-details {
  flex: 1;
}

.event-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.event-tags .tag {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tag.qualifier { background: #e3f2fd; color: #1565c0; }
.tag.signature { background: #fff3e0; color: #ef6c00; }
.tag.state { background: #e8f5e9; color: #2e7d32; }
.tag.world-tag { background: linear-gradient(135deg, gold, #ffd700); color: #1a1a2e; }
.tag.pro { background: rgba(200,16,46,0.1); color: #C8102E; }
.tag.mid { background: rgba(30,90,168,0.1); color: #1E5AA8; }
.tag.kid { background: rgba(0,128,128,0.1); color: #008080; }
.tag.max { background: rgba(139,0,0,0.1); color: #8B0000; }

.event-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.event-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.event-location i {
  color: #C8102E;
  margin-right: 0.25rem;
}

.event-meta {
  font-size: 0.85rem;
  color: #888;
}

.event-meta i {
  margin-right: 0.25rem;
}

.event-actions {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

.event-actions .btn-outline,
.event-actions .btn-primary {
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn-disabled {
  padding: 0.75rem 1.25rem;
  background: #e5e5e5;
  color: #999;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.events-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.page-info {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-date {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  .event-date .day {
    font-size: 1.3rem;
  }
  .event-actions {
    flex-direction: row;
    width: 100%;
  }
}

/* =====================================================
   SEASON OVERVIEW
   ===================================================== */

.season-overview {
  padding: 80px 0;
  background: #fff;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.overview-stat {
  text-align: center;
  padding: 1.5rem;
}

.overview-stat .stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C8102E, #a50d26);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.overview-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
}

.overview-stat .stat-label {
  font-size: 0.85rem;
  color: #666;
}

/* =====================================================
   EVENT TYPES
   ===================================================== */

.event-types {
  padding: 80px 0;
  background: #f8f9fa;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .types-grid {
    grid-template-columns: 1fr;
  }
}

.type-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.type-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.type-icon.qualifier { background: linear-gradient(135deg, #1565c0, #0d47a1); }
.type-icon.signature { background: linear-gradient(135deg, #ef6c00, #e65100); }
.type-icon.state { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.type-icon.world { background: linear-gradient(135deg, gold, #ffc107); color: #1a1a2e; }

.type-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
}

.type-card > p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-card ul li {
  font-size: 0.85rem;
  color: #444;
  padding: 0.35rem 0;
  border-top: 1px solid #eee;
}

/* =====================================================
   CALENDAR DOWNLOAD
   ===================================================== */

.calendar-download {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-content h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.download-content h2 i {
  color: #C8102E;
}

.download-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-buttons .btn-white,
.download-buttons .btn-outline-white {
  padding: 0.75rem 1.5rem;
}

/* =====================================================
   GAME MANUAL - QUICK LINKS
   ===================================================== */

.manual-quicklinks {
  padding: 0;
  background: #fff;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.quicklinks-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.quicklink-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
  background: #fff;
  text-decoration: none;
  color: #1a1a2e;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  border-right: 1px solid #eee;
  position: relative;
}

.quicklink-item:last-child {
  border-right: none;
}

.quicklink-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #C8102E;
  transition: width 0.3s ease;
}

.quicklink-item:hover {
  background: #fafafa;
  color: #C8102E;
}

.quicklink-item:hover::before {
  width: 100%;
}

.quicklink-item i {
  font-size: 1.75rem;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.quicklink-item:hover i {
  background: rgba(200,16,46,0.1);
  color: #C8102E;
  transform: scale(1.1);
}

.quicklink-item span {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* =====================================================
   GAME OVERVIEW
   ===================================================== */

.game-overview {
  padding: 100px 0;
  background: #f8f9fa;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .overview-content {
    grid-template-columns: 1fr;
  }
}

.overview-video .video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26,26,46,0.3);
}

.overview-video .video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
  transition: all 0.4s ease;
}

.overview-video .video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(200,16,46,0.3);
}

.overview-video .video-placeholder:hover::before {
  background: radial-gradient(circle at center, rgba(200,16,46,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.overview-video .video-placeholder i {
  font-size: 5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.overview-video .video-placeholder:hover i {
  transform: scale(1.15);
  color: #C8102E;
}

.overview-video .video-placeholder span {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.overview-text h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-text h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: #C8102E;
  border-radius: 2px;
}

.overview-text h3:first-child {
  margin-top: 0;
}

.overview-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.overview-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.overview-text ul li {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #444;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.overview-text ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #C8102E;
  font-size: 0.85rem;
  margin-top: 3px;
}

.overview-text ul li:last-child {
  border-bottom: none;
}

/* =====================================================
   FIELD SPECIFICATIONS
   ===================================================== */

.field-specs {
  padding: 100px 0;
  background: #fff;
}

.field-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .field-content {
    grid-template-columns: 1fr;
  }
}

.field-diagram {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
}

.field-diagram::before {
  content: 'FIELD LAYOUT';
  position: absolute;
  top: -12px;
  left: 30px;
  background: #1a1a2e;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.field-visual {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  border: 2px dashed #ccc;
}

.field-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.field-zone.red-zone {
  background: linear-gradient(135deg, #C8102E, #8B0000);
}

.field-zone.blue-zone {
  background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.field-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vortex-platform {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 -3px 10px rgba(0,0,0,0.3);
  border: 3px solid #444;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.field-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
}

.field-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .field-details {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #C8102E;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.spec-card:hover {
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.spec-card:hover::before {
  transform: scaleY(1);
}

.spec-card h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.spec-card h4 i {
  color: #C8102E;
  font-size: 1.1rem;
}

.spec-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  padding-left: 28px;
}

/* =====================================================
   SCORING SECTION
   ===================================================== */

.scoring-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.scoring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .scoring-grid {
    grid-template-columns: 1fr;
  }
}

.scoring-category {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.scoring-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.scoring-category h3 {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #fff;
  padding: 1.5rem 1.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.scoring-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C8102E, transparent);
}

.scoring-category h3 i {
  color: #C8102E;
  font-size: 1.25rem;
}

.scoring-table {
  width: 100%;
  border-collapse: collapse;
}

.scoring-table tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.scoring-table tr:hover {
  background: #fafafa;
}

.scoring-table tr:last-child {
  border-bottom: none;
}

.scoring-table td {
  padding: 1.15rem 1.5rem;
  font-size: 0.95rem;
}

.scoring-table td:first-child {
  color: #444;
}

.scoring-table td:last-child {
  text-align: right;
  font-weight: 800;
  color: #C8102E;
  font-size: 1rem;
}

.scoring-table tr.bonus-row {
  background: linear-gradient(90deg, rgba(200,16,46,0.08), rgba(200,16,46,0.02));
}

.scoring-table tr.bonus-row:hover {
  background: linear-gradient(90deg, rgba(200,16,46,0.12), rgba(200,16,46,0.04));
}

.scoring-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 14px;
  border-left: 4px solid #1565c0;
}

.scoring-note i {
  color: #1565c0;
  margin-top: 3px;
  font-size: 1.1rem;
}

.scoring-note p {
  font-size: 0.95rem;
  color: #1565c0;
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   RULES SECTION
   ===================================================== */

.rules-section {
  padding: 100px 0;
  background: #fff;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

.rule-category {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rule-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8102E, #1a1a2e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.rule-category:hover {
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.rule-category:hover::before {
  transform: scaleX(1);
}

.rule-category h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.rule-category h3 i {
  color: #C8102E;
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.rule-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-category ul li {
  padding: 0.85rem 0;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid #eee;
  padding-left: 1.5rem;
  position: relative;
  transition: all 0.2s ease;
}

.rule-category ul li:hover {
  color: #1a1a2e;
  padding-left: 1.75rem;
}

.rule-category ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #C8102E;
  font-size: 0.75rem;
}

.rule-category ul li:last-child {
  border-bottom: none;
}

/* =====================================================
   ROBOT REQUIREMENTS
   ===================================================== */

.robot-requirements {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.requirements-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1200px) {
  .requirements-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .requirements-content {
    grid-template-columns: 1fr;
  }
}

.requirement-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.requirement-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.requirement-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.requirement-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.requirement-header i {
  color: #C8102E;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.requirement-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.requirement-body {
  padding: 1.75rem;
}

.limit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
}

.limit-item:hover {
  padding-left: 8px;
}

.limit-item:last-child {
  border-bottom: none;
}

.limit-label {
  font-size: 0.9rem;
  color: #666;
}

.limit-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 6px;
}

/* =====================================================
   MANUAL DOWNLOADS
   ===================================================== */

.manual-downloads {
  padding: 100px 0;
  background: #fff;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #C8102E;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.download-card:hover {
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  transform: translateX(8px);
}

.download-card:hover::before {
  transform: scaleY(1);
}

.download-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(200,16,46,0.3);
}

.download-info {
  flex: 1;
}

.download-info h4 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.download-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.download-info .file-info {
  font-size: 0.8rem;
  color: #999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-info .file-info::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #C8102E;
  border-radius: 50%;
}

.download-btn {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8102E;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.download-card:hover .download-btn {
  background: #C8102E;
  color: #fff;
  transform: scale(1.1);
}

/* =====================================================
   MANUAL UPDATES
   ===================================================== */

.manual-updates {
  padding: 80px 0;
  background: #f8f9fa;
}

.updates-box {
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0f3460 100%);
  padding: 4rem 3rem;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,26,46,0.4);
}

.updates-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.updates-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(15,52,96,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.updates-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.updates-box h3 i {
  color: #C8102E;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

.updates-box > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.updates-box .subscribe-form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.updates-box .subscribe-form input {
  flex: 1;
  padding: 1.15rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.updates-box .subscribe-form input:focus {
  outline: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 0 0 3px rgba(200,16,46,0.3);
}

.updates-box .subscribe-form button {
  padding: 1.15rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(200,16,46,0.4);
}

.update-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

/* =====================================================
   LIVE HERO
   ===================================================== */

.live-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.live-hero-content {
  color: #fff;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,16,46,0.2);
  color: #ff4757;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #ff4757;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.live-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.live-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   FEATURED STREAM
   ===================================================== */

.featured-stream {
  padding: 40px 0 80px;
  background: #0f0f1a;
}

.stream-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .stream-container {
    grid-template-columns: 1fr;
  }
}

.main-player {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
}

.video-player {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(200,16,46,0.2), rgba(0,0,0,0.8));
}

.player-placeholder i {
  font-size: 5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.player-placeholder:hover i {
  transform: scale(1.1);
}

.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control-left,
.control-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.control-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.control-btn:hover {
  background: rgba(255,255,255,0.2);
}

.time-display {
  color: #fff;
  font-size: 0.85rem;
}

.stream-info {
  padding: 1.5rem;
  color: #fff;
}

.stream-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,71,87,0.2);
  color: #ff4757;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.viewer-count {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.stream-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stream-description {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.stream-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stream-actions .btn-primary,
.stream-actions .btn-outline {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.stream-sidebar {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 1.5rem;
}

.stream-sidebar h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.mini-streams {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mini-stream {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mini-stream:hover {
  background: rgba(255,255,255,0.05);
}

.mini-stream.active {
  background: rgba(200,16,46,0.2);
}

.mini-thumb {
  width: 100px;
  height: 56px;
  background: #000;
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}

.mini-live {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #ff4757;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 600;
}

.mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.mini-viewers {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

/* =====================================================
   STREAM SCHEDULE
   ===================================================== */

.stream-schedule {
  padding: 80px 0;
  background: #fff;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid transparent;
}

.schedule-item.completed {
  opacity: 0.6;
  border-left-color: #aaa;
}

.schedule-item.live {
  background: linear-gradient(135deg, rgba(255,71,87,0.05), rgba(255,71,87,0.1));
  border-left-color: #ff4757;
}

.schedule-item.upcoming {
  border-left-color: #C8102E;
}

.schedule-time {
  min-width: 80px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.schedule-content {
  flex: 1;
}

.schedule-content h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.schedule-division {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.schedule-division.pro { background: rgba(200,16,46,0.1); color: #C8102E; }
.schedule-division.mid { background: rgba(30,90,168,0.1); color: #1E5AA8; }
.schedule-division.kid { background: rgba(0,128,128,0.1); color: #008080; }

.schedule-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: #e3f2fd;
  color: #1565c0;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.schedule-status {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
}

.schedule-status.live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff4757;
  font-weight: 600;
}

.btn-outline.full-width {
  display: block;
  text-align: center;
}

@media (max-width: 576px) {
  .schedule-item {
    flex-wrap: wrap;
  }
  .schedule-time {
    min-width: 100%;
  }
}

/* =====================================================
   RECENT REPLAYS
   ===================================================== */

.recent-replays {
  padding: 80px 0;
  background: #f8f9fa;
}

.replays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .replays-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .replays-grid {
    grid-template-columns: 1fr;
  }
}

.replay-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.replay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.replay-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
  position: relative;
}

.replay-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.replay-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.replay-card:hover .replay-overlay {
  opacity: 1;
}

.replay-info {
  padding: 1.25rem;
}

.replay-info h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.replay-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.replay-divisions {
  display: flex;
  gap: 0.5rem;
}

.replay-divisions .tag {
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
}

/* =====================================================
   WORLDS PROMO
   ===================================================== */

.worlds-promo {
  padding: 80px 0;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .promo-content {
    grid-template-columns: 1fr;
  }
}

.promo-text {
  color: #fff;
}

.promo-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.promo-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.promo-text > p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.worlds-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.worlds-stat {
  text-align: center;
}

.worlds-stat .stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.worlds-stat .stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.promo-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-countdown {
  background: rgba(0,0,0,0.2);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
}

.promo-countdown h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.countdown-boxes {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.countdown-box {
  background: rgba(255,255,255,0.1);
  padding: 1.25rem 1rem;
  border-radius: 10px;
  min-width: 70px;
}

.countdown-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* =====================================================
   WATCH OPTIONS
   ===================================================== */

.watch-options {
  padding: 80px 0;
  background: #fff;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.platform-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a2e;
  transition: all 0.3s ease;
  min-width: 120px;
}

.platform-option:hover {
  background: #C8102E;
  color: #fff;
  transform: translateY(-5px);
}

.platform-option i {
  font-size: 2rem;
}

.platform-option span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* =====================================================
   SUBSCRIBE SECTION
   ===================================================== */

.subscribe-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.subscribe-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 2.5rem;
  border-radius: 16px;
  color: #fff;
  flex-wrap: wrap;
}

.subscribe-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.subscribe-content h2 i {
  color: #C8102E;
}

.subscribe-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
}

.subscribe-form input {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  min-width: 300px;
}

@media (max-width: 768px) {
  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }
  .subscribe-form input {
    min-width: auto;
    width: 100%;
  }
}

/* =====================================================
   UTILITY BUTTONS
   ===================================================== */

.btn-primary {
  background: linear-gradient(135deg, #C8102E, #a50d26);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a50d26, #8B0000);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1a1a2e;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ddd;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #C8102E;
  color: #C8102E;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* =====================================================
   GAME MANUAL RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .game-hero {
    padding: 140px 0 100px;
  }
  
  .game-hero h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
  }
  
  .quicklinks-grid {
    flex-wrap: wrap;
    border-radius: 16px;
  }
  
  .quicklink-item {
    flex: 0 0 calc(33.333% - 0px);
    min-width: auto;
    padding: 1.5rem 1rem;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .quicklink-item:nth-child(3n) {
    border-right: none;
  }
  
  .quicklink-item:nth-last-child(-n+3) {
    border-bottom: none;
  }
  
  .game-overview,
  .field-specs,
  .scoring-section,
  .rules-section,
  .robot-requirements,
  .manual-downloads {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .xrc-page-hero {
    padding: 120px 0 70px;
  }
  
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .game-hero {
    padding: 120px 0 80px;
  }
  
  .game-hero h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .game-hero .game-subtitle {
    font-size: 1.15rem;
  }
  
  .game-hero .season-label {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
    letter-spacing: 2px;
  }
  
  .manual-quicklinks {
    margin-top: -40px;
  }
  
  .quicklinks-grid {
    flex-direction: column;
    border-radius: 14px;
  }
  
  .quicklink-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .quicklink-item::before {
    display: none;
  }
  
  .quicklink-item:last-child {
    border-bottom: none;
  }
  
  .quicklink-item i {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .quicklink-item span {
    font-size: 1rem;
  }
  
  .game-overview,
  .field-specs,
  .scoring-section,
  .rules-section,
  .robot-requirements,
  .manual-downloads,
  .manual-updates {
    padding: 60px 0;
  }
  
  .overview-video .video-placeholder i {
    font-size: 3.5rem;
  }
  
  .field-diagram::before {
    font-size: 0.65rem;
    padding: 5px 12px;
    top: -10px;
    left: 20px;
  }
  
  .vortex-platform {
    width: 70px;
    height: 70px;
    font-size: 0.65rem;
  }
  
  .updates-box {
    padding: 3rem 2rem;
    border-radius: 18px;
  }
  
  .updates-box h3 {
    font-size: 1.5rem;
  }
  
  .updates-box > p {
    font-size: 1rem;
  }
  
  .updates-box .subscribe-form {
    flex-direction: column;
  }
  
  .updates-box .subscribe-form input,
  .updates-box .subscribe-form button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .game-hero {
    padding: 100px 0 60px;
  }
  
  .game-hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .game-hero .game-subtitle {
    font-size: 1rem;
  }
  
  .game-hero .season-label {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
  
  .manual-quicklinks {
    margin-top: -30px;
  }
  
  .quicklinks-grid {
    border-radius: 12px;
  }
  
  .quicklink-item {
    padding: 1rem 1.25rem;
  }
  
  .quicklink-item i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .overview-text h3 {
    font-size: 1.2rem;
  }
  
  .scoring-category h3 {
    font-size: 1rem;
    padding: 1.25rem;
  }
  
  .scoring-table td {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }
  
  .rule-category {
    padding: 1.5rem;
  }
  
  .rule-category h3 {
    font-size: 1.05rem;
  }
  
  .rule-category h3 i {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .requirement-header {
    padding: 1.25rem;
  }
  
  .requirement-header i {
    font-size: 1.25rem;
  }
  
  .requirement-header h3 {
    font-size: 1rem;
  }
  
  .requirement-body {
    padding: 1.25rem;
  }
  
  .limit-value {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  
  .download-card {
    padding: 1.25rem;
  }
  
  .download-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-radius: 12px;
  }
  
  .download-info h4 {
    font-size: 1rem;
  }
  
  .download-btn {
    width: 40px;
    height: 40px;
  }
  
  .updates-box {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
  
  .updates-box h3 {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}
