/* ===========================
   PAGE CIRCUIT - LANDING PAGE
   =========================== */

.circuit-page {
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.circuit-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-darker);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 28, 0.6) 0%,
    rgba(13, 13, 28, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.glow-text {
  background: linear-gradient(
    135deg,
    var(--warning) 0%,
    var(--secondary) 50%,
    var(--silver) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  text-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
  margin-top: 1.5rem;
}

.season-info {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 400;
}

.season-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-right: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--gold);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Sections */
.circuit-section {
  padding: 4rem 1.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.slide-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.bounce-in {
  opacity: 0;
  transform: scale(0.3);
  animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Points Section */
.points-section {
  background: var(--bg-dark);
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.points-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.points-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.points-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.points-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Card Header with Hero Image */
.card-header-hero {
  position: relative;
  width: calc(100% + 4rem);
  height: 200px;
  margin: -2rem -2rem 2rem -2rem;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.hero-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(13, 13, 28, 0.7) 100%
  );
  pointer-events: none;
}

.card-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.points-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 !important;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.breakdown-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.rank-badge {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  background: var(--bg-darker);
  color: var(--text-primary);
  min-width: 60px;
  text-align: center;
}

.rank-badge.gold {
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  color: var(--bg-dark);
}

.rank-badge.silver {
  background: linear-gradient(135deg, var(--silver), #e8e8e8);
  color: var(--bg-dark);
}

.rank-badge.bronze {
  background: linear-gradient(135deg, var(--bronze), #e6a55c);
  color: var(--bg-dark);
}

.points-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-points-explanation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.explanation-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.explanation-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.card-highlight {
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15),
    rgba(118, 75, 162, 0.15)
  );
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
  border: 1px solid var(--primary);
}

/* Weekly Prizes Section */
.weekly-prizes-section {
  background: var(--bg-darker);
}

.weekly-prizes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  align-items: center;
}

.prizes-description h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.prizes-description p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.prizes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prizes-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.prizes-list li:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

/* Card Fan Container */
.card-fan-container {
  text-align: center;
}

.card-fan {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.fan-card {
  position: absolute;
  width: 250px;
  height: 350px;
  transition: all 0.4s ease;
  transform-origin: center bottom;
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

/* Position des cartes en éventail */
.fan-card-1 {
  transform: rotate(-25deg) translateX(-60px) translateY(20px);
  z-index: 1;
}

.fan-card-2 {
  transform: rotate(-10deg) translateX(-20px) translateY(10px);
  z-index: 2;
}

.fan-card-3 {
  transform: rotate(10deg) translateX(20px) translateY(10px);
  z-index: 3;
}

.fan-card-4 {
  transform: rotate(25deg) translateX(60px) translateY(20px);
  z-index: 4;
}

/* Hover effects */
.card-fan:hover .fan-card-1 {
  transform: rotate(-30deg) translateX(-80px) translateY(25px);
}

.card-fan:hover .fan-card-2 {
  transform: rotate(-15deg) translateX(-30px) translateY(15px);
}

.card-fan:hover .fan-card-3 {
  transform: rotate(15deg) translateX(30px) translateY(15px);
}

.card-fan:hover .fan-card-4 {
  transform: rotate(30deg) translateX(80px) translateY(25px);
}

.card-fan:hover .fan-card img {
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
}

.card-fan-caption {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3rem;
}

/* Hero Champions Content - Effect miroir avec weekly-prizes */
.hero-champions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  align-items: center;
}

.champions-image {
  text-align: center;
}

.bracelets-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.bracelets-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.champions-image-caption {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
}

/* Hero Champions Section */
.hero-champions-section {
  padding: 0;
  background: transparent;
  border: none;
  text-align: left;
}

.hero-champions-section h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-champions-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.champions-count {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  margin: 0;
}

/* Qualification Section */
.qualification-section {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1035 100%);
  position: relative;
  overflow: hidden;
}

.qualification-background {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(118, 75, 162, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(102, 126, 234, 0.2) 0%,
      transparent 50%
    );
  will-change: transform;
}

.section-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.qualification-card {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Finale Info Stats */
.finale-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 165, 0, 0.1)
  );
  border-radius: 16px;
  border: 2px solid var(--gold);
}

.finale-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.finale-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.finale-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.finale-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.qualification-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.qualification-description strong {
  color: var(--gold);
  font-weight: 700;
}

/* Qualification Paths */
.qualification-paths {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.path-item {
  flex: 1;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.path-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.path-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.path-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.path-content strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.path-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.finale-note {
  padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

/* Prizes Section */
.prizes-section {
  background: var(--bg-dark);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.prize-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.prize-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.prize-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.prize-legendary::before {
  background: linear-gradient(90deg, var(--gold), #ffed4e);
}

.prize-epic::before {
  background: linear-gradient(90deg, var(--silver), #e8e8e8);
}

.prize-rare::before {
  background: linear-gradient(90deg, var(--bronze), #e6a55c);
}

.prize-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.prize-legendary {
  border-color: var(--gold);
}

.prize-legendary:hover {
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.prize-epic {
  border-color: var(--silver);
}

.prize-rare {
  border-color: var(--bronze);
}

.prize-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.rank-icon {
  font-size: 2rem;
}

.rank-text {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.prize-image-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.2),
    rgba(118, 75, 162, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
}

.prize-icon {
  font-size: 4rem;
}

.prize-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.prize-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.prize-list li {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.prize-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prizes-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.prizes-note.visible {
  opacity: 1;
}

.prizes-note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1035 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 25% 50%,
      rgba(102, 126, 234, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(118, 75, 162, 0.2) 0%,
      transparent 50%
    );
  will-change: transform;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: scale(0.8);
}

.cta-content.visible {
  opacity: 1;
  transform: scale(1);
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.cta-description {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.8);
  }
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--primary);
}

.cta-secondary:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.button-icon {
  font-size: 1.5rem;
}

.cta-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.info-icon {
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .circuit-section {
    padding: 3rem 1rem;
  }

  .hero-content {
    padding: 1rem;
    background: rgba(13, 13, 28, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .season-info {
    font-size: 1rem;
    line-height: 1.6;
  }

  .season-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .points-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .points-card {
    padding: 1.5rem;
  }

  .card-header-hero {
    width: calc(100% + 3rem);
    height: 150px;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  }

  .points-card h3 {
    font-size: 1.5rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .breakdown-item {
    padding: 0.5rem 0.75rem;
  }

  .rank-badge {
    min-width: 50px;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .points-value {
    font-size: 1.1rem;
  }

  .explanation-step {
    gap: 1rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .explanation-step p {
    font-size: 1rem;
  }

  .card-highlight {
    padding: 1rem;
    font-size: 1rem;
  }

  .card-note {
    font-size: 0.85rem;
    padding: 0.6rem;
  }

  .weekly-prizes-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .prizes-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .prizes-description p {
    font-size: 1rem;
  }

  .prizes-list li {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .hero-champions-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .hero-champions-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-champions-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .champions-count {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .finale-info {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .finale-stat {
    gap: 0.25rem;
  }

  .finale-number {
    font-size: 2rem;
  }

  .finale-label {
    font-size: 0.8rem;
  }

  .finale-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      var(--gold),
      transparent
    );
  }

  .qualification-card {
    padding: 1.5rem;
  }

  .qualification-description {
    font-size: 1rem;
  }

  .qualification-paths {
    flex-direction: column;
    gap: 1rem;
  }

  .path-item {
    padding: 1rem;
  }

  .path-content strong {
    font-size: 1rem;
  }

  .path-content p {
    font-size: 0.9rem;
  }

  .card-fan {
    height: 300px;
  }

  .fan-card {
    width: 180px;
    height: 250px;
  }

  .fan-card-1 {
    transform: rotate(-20deg) translateX(-40px) translateY(15px);
  }

  .fan-card-2 {
    transform: rotate(-7deg) translateX(-15px) translateY(8px);
  }

  .fan-card-3 {
    transform: rotate(7deg) translateX(15px) translateY(8px);
  }

  .fan-card-4 {
    transform: rotate(20deg) translateX(40px) translateY(15px);
  }

  .card-fan-caption {
    font-size: 0.95rem;
    margin-top: 2rem;
  }

  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .prize-card {
    padding: 1.5rem;
  }

  .prize-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .prize-list li {
    font-size: 0.95rem;
    padding: 0.6rem;
  }

  .cta-section {
    min-height: 60vh;
  }

  .cta-content {
    padding: 1.5rem 1rem;
  }

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

  .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }

  .cta-info {
    flex-direction: column;
    gap: 1rem;
  }

  .info-item {
    font-size: 1rem;
  }

  .info-icon {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .circuit-section {
    padding: 2rem 0.75rem;
  }

  .hero-content {
    padding: 1rem 0.75rem;
    background: rgba(13, 13, 28, 0.65);
    border-radius: 12px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .season-info {
    font-size: 0.9rem;
  }

  .breakdown-item {
    padding: 0.4rem 0.6rem;
  }

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

  .points-card {
    padding: 1.25rem;
  }

  .card-header-hero {
    width: calc(100% + 2.5rem);
    height: 120px;
    margin: -1.25rem -1.25rem 1.25rem -1.25rem;
  }

  .card-fan {
    height: 250px;
  }

  .fan-card {
    width: 140px;
    height: 200px;
  }

  .fan-card-1 {
    transform: rotate(-18deg) translateX(-30px) translateY(10px);
  }

  .fan-card-2 {
    transform: rotate(-6deg) translateX(-10px) translateY(5px);
  }

  .fan-card-3 {
    transform: rotate(6deg) translateX(10px) translateY(5px);
  }

  .fan-card-4 {
    transform: rotate(18deg) translateX(30px) translateY(10px);
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
