:root {
  --sky-blue: #6CABDD;
  --navy: #1C2C5B;
  --gold: #D4AF37;
  --dark: #0a0a0f;
  --darker: #050508;
  --light: #f0f4f8;
  --gradient-primary: linear-gradient(135deg, #1C2C5B 0%, #6CABDD 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #f4d03f 50%, #D4AF37 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      var(--sky-blue) 35px,
      var(--sky-blue) 70px
    );
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,10,15,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--sky-blue);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 3rem;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(108, 171, 221, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(28, 44, 91, 0.2) 0%, transparent 50%),
    var(--darker);
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(10rem, 25vw, 20rem);
  line-height: 0.85;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

.hero-image {
  position: absolute;
  right: -6%;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  animation: heroImageReveal 1.2s ease-out 0.3s both;
}

.hero-image img {
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(108, 171, 221, 0.3));
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 8px;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.hero-title span {
  display: block;
}

.hero-title .first-name {
  color: var(--light);
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-title .last-name {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--sky-blue);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.8s both;
}

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

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 244, 248, 0.6);
  margin-top: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--sky-blue);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

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

/* Section Styles */
section {
  padding: 8rem 3rem;
  position: relative;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 1rem auto 0;
}

/* About Section */
.about {
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(108, 171, 221, 0.08) 0%, transparent 50%),
    var(--dark);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.about-text {
  font-size: 1.2rem;
  line-height: 2;
  color: rgba(240, 244, 248, 0.85);
}

.about-text .highlight {
  color: var(--sky-blue);
  font-weight: 600;
}

.profile-card {
  background: linear-gradient(135deg, rgba(28, 44, 91, 0.3) 0%, rgba(108, 171, 221, 0.1) 100%);
  border: 1px solid rgba(108, 171, 221, 0.2);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.profile-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(10, 10, 15, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(108, 171, 221, 0.15);
}

.profile-item-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.profile-item-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(240, 244, 248, 0.5);
  margin-bottom: 0.5rem;
}

.profile-item-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--light);
  letter-spacing: 1px;
}

/* Video Blog CTA */
.video-blog-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(28, 44, 91, 0.4) 100%);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: var(--light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.video-blog-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.video-blog-cta:hover::before {
  left: 100%;
}

.video-blog-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}

.video-blog-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-blog-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.video-blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.video-blog-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FF6B6B;
}

.video-blog-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--light);
}

.video-blog-desc {
  font-size: 0.9rem;
  color: rgba(240, 244, 248, 0.7);
  line-height: 1.5;
}

.video-blog-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.video-blog-cta:hover .video-blog-arrow {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .video-blog-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .video-blog-arrow {
    display: none;
  }
}

/* Career Section */
.career {
  background: var(--darker);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--sky-blue) 0%, var(--navy) 100%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-content {
  background: linear-gradient(135deg, rgba(28, 44, 91, 0.4) 0%, rgba(10, 10, 15, 0.8) 100%);
  border: 1px solid rgba(108, 171, 221, 0.15);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(108, 171, 221, 0.15);
}

.timeline-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--sky-blue);
  margin-bottom: 0.5rem;
}

.timeline-club {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-stats {
  font-size: 0.95rem;
  color: rgba(240, 244, 248, 0.7);
}

.timeline-stats span {
  color: var(--gold);
  font-weight: 600;
}

/* Records Section */
.records {
  background: 
    radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    var(--dark);
}

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

.record-card {
  background: linear-gradient(145deg, rgba(28, 44, 91, 0.3) 0%, rgba(10, 10, 15, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.record-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.record-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.record-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.record-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.record-description {
  color: rgba(240, 244, 248, 0.75);
  line-height: 1.8;
}

/* Zen Celebration Section */
.zen-section {
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    var(--darker);
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zen-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.zen-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zen-figure {
  width: 280px;
  height: 280px;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.zen-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.zen-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.zen-ring {
  position: absolute;
  border: 2px solid rgba(108, 171, 221, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-expand 3s ease-out infinite;
}

.zen-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.zen-ring:nth-child(2) { width: 260px; height: 260px; animation-delay: 1s; }
.zen-ring:nth-child(3) { width: 320px; height: 320px; animation-delay: 2s; }

@keyframes ring-expand {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

.zen-svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.zen-content {
  text-align: left;
}

.zen-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zen-subtitle {
  font-size: 1.1rem;
  color: var(--sky-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.zen-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(240, 244, 248, 0.8);
  margin-bottom: 2rem;
}

.zen-stats {
  display: flex;
  gap: 3rem;
}

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

.zen-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.zen-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(240, 244, 248, 0.5);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .zen-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .zen-stats {
    justify-content: center;
  }

  .zen-figure {
    width: 220px;
    height: 220px;
  }
}

/* Quote Section */
.quote-section {
  background: var(--gradient-primary);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40rem;
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
  color: var(--light);
}

.quote-text {
  font-size: 2rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--gold);
}

/* News Section */
.news {
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(108, 171, 221, 0.06) 0%, transparent 50%),
    var(--darker);
}

.news-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: linear-gradient(145deg, rgba(28, 44, 91, 0.35) 0%, rgba(10, 10, 15, 0.9) 100%);
  border: 1px solid rgba(108, 171, 221, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(108, 171, 221, 0.15);
  border-color: rgba(108, 171, 221, 0.3);
}

.news-card:hover::before {
  opacity: 1;
}

.news-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12) 0%, rgba(28, 44, 91, 0.3) 50%, rgba(10, 10, 15, 0.95) 100%);
  border-color: rgba(212, 175, 55, 0.25);
  padding: 2.5rem;
}

.news-card.featured::before {
  background: var(--gradient-gold);
  opacity: 1;
}

.news-card.featured:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.12);
}

.news-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-date {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sky-blue);
}

.news-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--light);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.news-card.featured .news-title {
  font-size: 2rem;
}

.news-card:hover .news-title {
  color: var(--gold);
}

.news-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(240, 244, 248, 0.65);
}

.news-card.featured .news-excerpt {
  font-size: 1.05rem;
}

.news-source {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(240, 244, 248, 0.4);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    padding: 1.5rem;
  }

  .news-title {
    font-size: 1.4rem;
  }

  .news-card.featured .news-title {
    font-size: 1.6rem;
  }
}

/* Fixtures Section */
.fixtures {
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(108, 171, 221, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(28, 44, 91, 0.15) 0%, transparent 50%),
    var(--dark);
}

.fixtures-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fixture-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(28, 44, 91, 0.4) 0%, rgba(10, 10, 15, 0.8) 100%);
  border: 1px solid rgba(108, 171, 221, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fixture-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
}

.fixture-card:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 50px rgba(108, 171, 221, 0.2);
  border-color: rgba(108, 171, 221, 0.4);
}

.fixture-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(108, 171, 221, 0.3) 100%);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  min-width: 70px;
}

.fixture-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--light);
  line-height: 1;
}

.fixture-month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--sky-blue);
  text-transform: uppercase;
}

.fixture-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fixture-competition {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.fixture-teams {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fixture-teams .team {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--light);
}

.fixture-teams .team.home {
  color: var(--sky-blue);
}

.fixture-vs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: rgba(240, 244, 248, 0.4);
  letter-spacing: 2px;
}

.fixture-venue {
  font-size: 0.85rem;
  color: rgba(240, 244, 248, 0.5);
}

.fixture-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--light);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .fixture-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
  }

  .fixture-card::before {
    width: 100%;
    height: 4px;
    bottom: auto;
  }

  .fixture-date {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  .fixture-day {
    font-size: 1.8rem;
  }

  .fixture-teams {
    justify-content: center;
  }

  .fixture-time {
    justify-self: center;
  }
}

/* Trophies Section */
.trophies {
  background: var(--darker);
}

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

.trophy-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: transform 0.3s ease;
}

.trophy-item:hover {
  transform: scale(1.05);
}

.trophy-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trophy-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.trophy-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

/* Footer */
footer {
  background: var(--darker);
  padding: 4rem 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(108, 171, 221, 0.1);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 6px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: rgba(240, 244, 248, 0.5);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-flag {
  font-size: 2rem;
}

.footer-credit {
  color: rgba(240, 244, 248, 0.4);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

.footer-credit a {
  color: var(--city-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-image {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
    opacity: 0.25;
    z-index: 0;
  }

  .hero-image img {
    max-height: 60vh;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-item::before {
    left: 20px;
  }

  section {
    padding: 5rem 1.5rem;
  }

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

  .quote-text {
    font-size: 1.3rem;
  }

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

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

