/* ===================================
   DYNEXA BURST - MINIMALIST DESIGN
   CSS Reset & Base Styles
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1D3557;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   TYPOGRAPHY - MINIMALIST
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 15px;
  color: #1D3557;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #E63946;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E63946;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #C41E2A;
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  background-color: transparent;
  border: 2px solid #1D3557;
  color: #1D3557;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1D3557;
  color: #FFFFFF;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 24px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1D3557;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E63946;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}

.mobile-nav a {
  font-size: 18px;
  color: #1D3557;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E63946;
  border-left-color: #E63946;
  background-color: #F1FAEE;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background-color: #F1FAEE;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #1D3557;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: #1D3557;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #E63946;
}

.btn-primary:hover {
  background-color: #C41E2A;
  border-color: #C41E2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1D3557;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #1D3557;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1D3557;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
  background-color: #F1FAEE;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #1D3557;
}

.live-indicator,
.archive-stats {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  background-color: #E63946;
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.events-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.packages-grid,
.matches-grid,
.live-streams-grid,
.videos-grid,
.replays-grid,
.categories-grid,
.contact-grid,
.stats-grid,
.actions-grid,
.features-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.event-card,
.service-card,
.benefit-item,
.testimonial-card,
.package-card,
.match-card,
.stream-card,
.video-card,
.replay-card,
.category-card,
.contact-card,
.stat-item,
.action-card,
.feature-item,
.value-item {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.event-card:hover,
.service-card:hover,
.match-card:hover,
.stream-card:hover,
.video-card:hover,
.replay-card:hover,
.category-card:hover,
.contact-card:hover,
.action-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ===================================
   WEEKLY HIGHLIGHTS
   =================================== */

.weekly-highlights {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.event-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1D3557;
}

.event-card p {
  font-size: 16px;
  color: #1D3557;
  margin-bottom: 12px;
}

.event-time {
  display: inline-block;
  padding: 6px 12px;
  background-color: #F1FAEE;
  color: #1D3557;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

/* ===================================
   SERVICES / PACKAGES
   =================================== */

.services-overview,
.pricing-cards {
  padding: 60px 20px;
  background-color: #F1FAEE;
}

.service-card.popular,
.package-card.popular {
  border: 2px solid #E63946;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.15);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #E63946;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.price,
.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
  display: block;
}

.package-price span {
  font-size: 16px;
  font-weight: 400;
  color: #1D3557;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #1D3557;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}

.btn,
.btn-small,
.btn-large {
  display: inline-block;
  background-color: #E63946;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn-small:hover,
.btn-large:hover {
  background-color: #C41E2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.benefit-item {
  text-align: center;
  border: none;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 15px;
  color: #1D3557;
}

/* ===================================
   TESTIMONIALS - READABLE
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #F1FAEE;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #FFFFFF;
  border-left: 4px solid #E63946;
}

.testimonial-card p {
  font-size: 16px;
  color: #1D3557;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 14px;
  color: #1D3557;
  font-weight: 600;
  font-style: normal;
}

/* ===================================
   CTA BANNERS
   =================================== */

.cta-banner,
.subscription-prompt,
.trial-offer,
.access-prompt,
.archive-subscription,
.cta-join {
  padding: 60px 20px;
  background-color: #1D3557;
  text-align: center;
}

.cta-banner h2,
.subscription-prompt h2,
.trial-offer h2,
.access-prompt h2,
.archive-subscription h2,
.cta-join h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.subscription-prompt p,
.trial-offer p,
.access-prompt p,
.archive-subscription p,
.cta-join p {
  color: #F1FAEE;
  font-size: 18px;
  margin-bottom: 24px;
}

/* ===================================
   CALENDAR & SCHEDULE
   =================================== */

.calendar-view {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.day-column {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #F1FAEE;
  border-radius: 8px;
  padding: 20px;
}

.day-column h3 {
  font-size: 20px;
  color: #E63946;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E63946;
}

.event-time-slot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
}

.event-time-slot:last-child {
  border-bottom: none;
}

.event-time-slot .time {
  font-weight: 600;
  color: #E63946;
  font-size: 14px;
}

.event-time-slot .event {
  color: #1D3557;
  font-size: 15px;
}

/* ===================================
   TABS
   =================================== */

.events-by-sport {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.sport-tabs {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.tab-button {
  background-color: #F1FAEE;
  color: #1D3557;
  border: 1px solid #E8E8E8;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background-color: #E63946;
  color: #FFFFFF;
  border-color: #E63946;
}

.events-list {
  margin-top: 24px;
}

.event-item {
  background-color: #F1FAEE;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #E63946;
}

.event-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.event-item p {
  font-size: 15px;
  color: #1D3557;
}

/* ===================================
   LIVE STREAMS
   =================================== */

.live-now,
.upcoming-streams {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.stream-card.live {
  border: 2px solid #E63946;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.15);
}

.live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #E63946;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.stream-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.stream-info p {
  font-size: 16px;
  margin-bottom: 8px;
}

.viewers {
  display: block;
  font-size: 13px;
  color: #1D3557;
  margin-top: 8px;
}

.upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.upcoming-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #F1FAEE;
  border-radius: 8px;
  gap: 20px;
  flex-wrap: wrap;
}

.upcoming-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.upcoming-info p {
  font-size: 15px;
  color: #1D3557;
}

.start-time {
  font-size: 14px;
  color: #E63946;
  font-weight: 600;
}

/* ===================================
   ARCHIVE
   =================================== */

.recent-additions,
.popular-replays,
.archive-categories {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.video-info,
.replay-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.duration,
.date,
.views,
.count {
  font-size: 13px;
  color: #1D3557;
  font-weight: 500;
}

/* ===================================
   ABOUT & COMPANY
   =================================== */

.company-story,
.mission-values,
.team-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1D3557;
}

.statistics-showcase {
  padding: 60px 20px;
  background-color: #F1FAEE;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  display: block;
}

.stat-label {
  font-size: 15px;
  color: #1D3557;
  display: block;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card img {
  width: 48px;
  height: 48px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
}

.contact-card a {
  color: #E63946;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.hours {
  display: block;
  font-size: 13px;
  color: #1D3557;
  margin-top: 8px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #F1FAEE;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-info,
.form-notice {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-notice p {
  font-size: 16px;
  line-height: 1.7;
}

.form-notice a {
  color: #E63946;
  font-weight: 600;
}

.form-notice a:hover {
  text-decoration: underline;
}

.office-location {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.location-info {
  max-width: 600px;
  margin: 0 auto;
}

.address-box {
  background-color: #F1FAEE;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
}

.address-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.address-box p {
  font-size: 15px;
  line-height: 1.8;
}

/* ===================================
   FAQ
   =================================== */

.faq-pricing,
.faq-contact {
  padding: 60px 20px;
  background-color: #F1FAEE;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1D3557;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #1D3557;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1D3557;
}

.content-wrapper h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #1D3557;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #1D3557;
}

.content-wrapper ul {
  margin: 16px 0 24px 24px;
  list-style-type: disc;
}

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #1D3557;
}

.content-wrapper a {
  color: #E63946;
  font-weight: 600;
}

.content-wrapper a:hover {
  text-decoration: underline;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  background-color: #F1FAEE;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.thank-you-message {
  font-size: 18px;
  line-height: 1.7;
}

.what-next,
.next-steps,
.suggested-actions {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.timeline-steps {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1 1 250px;
  text-align: center;
  padding: 24px;
  background-color: #F1FAEE;
  border-radius: 8px;
  max-width: 300px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: #1D3557;
}

.return-home,
.back-home {
  padding: 40px 20px;
  text-align: center;
  background-color: #F1FAEE;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #1D3557;
  color: #F1FAEE;
  padding: 60px 20px 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 18px;
  color: #F1FAEE;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #F1FAEE;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #E63946;
}

.footer-bottom {
  border-top: 1px solid rgba(241, 250, 238, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #F1FAEE;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1D3557;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #F1FAEE;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background-color: #E63946;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #C41E2A;
}

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #F1FAEE;
  border: 1px solid #F1FAEE;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: rgba(241, 250, 238, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1D3557;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background-color: #E8E8E8;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #E63946;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-save {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cookie-save:hover {
  background-color: #C41E2A;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .event-card,
  .service-card,
  .benefit-item,
  .testimonial-card,
  .package-card,
  .match-card,
  .stream-card,
  .video-card,
  .replay-card,
  .category-card,
  .contact-card,
  .stat-item,
  .action-card,
  .feature-item,
  .value-item {
    flex: 1 1 100%;
  }
  
  .day-column {
    flex: 1 1 100%;
  }
  
  .upcoming-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .package-price {
    font-size: 28px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-button,
  .btn,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
}