/* ========================================
   Digira Esports - Main Styles
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Primary Colors */
  --main-blue: #1e88d9;
  --light-blue: #5bb7f2;

  /* Background Colors */
  --deep-dark: #0b0f14;
  --card-bg: #111827;
  --darker-accent: #1f2937;

  /* Neutral/Border Colors */
  --silver-border: rgba(30, 136, 217, 0.2);
  --muted-silver: rgba(91, 183, 242, 0.15);

  /* Text Colors */
  --text-primary: #e5e7eb;
  --text-muted: #9ca3af;
  --text-white: #ffffff;

  /* Accent/State Colors */
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --subtle-red: #ef4444;

  /* Typography */
  --font-heading: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-button: "Montserrat", sans-serif;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

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

body {
  font-family: var(--font-body);
  background-color: var(--deep-dark);
  color: var(--text-primary);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none; /* Hide default cursor */
}

/* Custom Cursor - Sporty Gaming Crosshair */
.custom-cursor {
  width: 40px;
  height: 40px;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1);
  display: none;
}

.custom-cursor::before,
.custom-cursor::after {
  content: '';
  position: absolute;
  background: var(--main-blue);
  box-shadow: 0 0 10px rgba(30, 136, 217, 0.8), 0 0 20px rgba(91, 183, 242, 0.6);
}

.custom-cursor::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.custom-cursor::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 2px;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--light-blue);
  border: 2px solid var(--main-blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  box-shadow: 0 0 15px rgba(91, 183, 242, 0.8), inset 0 0 10px rgba(30, 136, 217, 0.5);
  display: none;
  animation: cursorPulse 2s ease-in-out infinite;
}

@keyframes cursorPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(91, 183, 242, 0.8), inset 0 0 10px rgba(30, 136, 217, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(91, 183, 242, 1), inset 0 0 15px rgba(30, 136, 217, 0.8);
  }
}

.custom-cursor.active,
.custom-cursor-dot.active {
  display: block;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.custom-cursor.hover::before,
.custom-cursor.hover::after {
  background: var(--light-blue);
  box-shadow: 0 0 15px rgba(91, 183, 242, 1), 0 0 30px rgba(30, 136, 217, 0.8);
}

.custom-cursor-dot.hover {
  width: 12px;
  height: 12px;
  border-width: 3px;
  box-shadow: 0 0 20px rgba(91, 183, 242, 1), inset 0 0 15px rgba(30, 136, 217, 0.8);
}

.custom-cursor.click {
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(90deg);
}

.custom-cursor.click::before,
.custom-cursor.click::after {
  background: var(--light-blue);
  box-shadow: 0 0 20px rgba(91, 183, 242, 1);
}

/* Cursor trail effect */
.custom-cursor-trail {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  animation: trailFade 0.5s ease-out forwards;
  display: none;
}

@keyframes trailFade {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none !important;
  }
  
  body {
    cursor: auto;
  }
}

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

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

/* ========================================
   Typography
   ======================================== */

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main-blue);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.2px;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #000000;
  z-index: 1000;
  border-bottom: 1px solid rgba(30, 136, 217, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img,
.logo video {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--main-blue);
}

.nav-link.active {
  color: var(--light-blue);
  border-bottom: 2px solid var(--main-blue);
  padding-bottom: 2px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(30, 136, 217, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(91, 183, 242, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 40% 20%, rgba(30, 136, 217, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 70%, rgba(91, 183, 242, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--deep-dark) 0%, var(--card-bg) 100%);
  margin-top: 70px;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(30, 136, 217, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(91, 183, 242, 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes overlayShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--main-blue) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
  bottom: 20%;
  right: 15%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.6) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(30, 136, 217, 0.15) 1px, transparent 0);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
  animation: gridMove 30s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-description {
  font-size: 2rem;
  font-weight: 600;
  color: var(--light-blue);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.hero-description-animated {
  animation: descriptionSlideIn 1s ease-out 0.2s both;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--main-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(91, 183, 242, 0.5);
  position: relative;
}

.hero-description-animated::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--main-blue), transparent);
  border-radius: 2px;
  animation: descriptionLine 1.5s ease-out 0.8s both;
}

@media (max-width: 767px) {
  .hero-description-animated::after {
    width: 120px;
    height: 2.5px;
    bottom: -12px;
  }
}

@keyframes descriptionLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 150px;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  @keyframes descriptionLine {
    from {
      width: 0;
      opacity: 0;
    }
    to {
      width: 120px;
      opacity: 1;
    }
  }
}

@keyframes descriptionSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes descriptionGlow {
  0% {
    opacity: 0.4;
    filter: blur(15px);
  }
  100% {
    opacity: 0.8;
    filter: blur(20px);
  }
}

.hero-title-animated {
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--light-blue) 50%, var(--main-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 30px rgba(30, 136, 217, 0.5);
  position: relative;
  display: inline-block;
  font-size: 4.5rem;
  letter-spacing: 4px;
  line-height: 1.1;
}

.hero-title-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--light-blue) 50%, var(--main-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.3);
  }
}

.hero-tagline-animated {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-weight: 400;
  animation: taglineFadeIn 1s ease-out 0.5s both;
  position: relative;
  letter-spacing: 1px;
}

.hero-tagline-animated::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--main-blue), transparent);
  animation: taglineUnderline 1.5s ease-out 0.8s forwards;
}

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

@keyframes taglineUnderline {
  to {
    width: 200px;
  }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn-animated {
  animation: buttonSlideIn 0.8s ease-out both;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-animated::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn-animated:hover::before {
  width: 300px;
  height: 300px;
}

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

/* Interactive cursor effects */
.hero-content {
  cursor: none;
}

.hero-content:hover ~ .hero-canvas,
.hero:hover .hero-canvas {
  filter: brightness(1.1);
}

/* Enhanced visual effects */
.hero-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.05) 0%, transparent 70%);
  animation: contentPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes contentPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Additional interactive elements */
.hero-btn-animated {
  position: relative;
  z-index: 1;
}

.hero-btn-animated:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(30, 136, 217, 0.5);
}

.btn-text.hero-btn-animated {
  position: relative;
}

.btn-text.hero-btn-animated::after {
  content: '→';
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.btn-text.hero-btn-animated:hover::after {
  transform: translateX(5px);
}

/* Pulse animation for hero section */
@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(30, 136, 217, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(30, 136, 217, 0);
  }
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.1) 0%, transparent 70%);
  animation: heroPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* Ripple effect */
.hero-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.6) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: rippleExpand 1s ease-out forwards;
  pointer-events: none;
  z-index: 5;
}

@keyframes rippleExpand {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Smooth transitions for hero content */
.hero-content {
  transition: transform 0.1s ease-out;
}

/* Enhanced hero CTA spacing */
.hero-cta {
  gap: 25px;
  margin-top: 10px;
}

/* Enhanced button hover effects */
.btn-primary.hero-btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-primary.hero-btn-animated::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary.hero-btn-animated:hover::after {
  width: 400px;
  height: 400px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  font-family: var(--font-button);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--main-blue) 0%, var(--light-blue) 100%);
  color: var(--text-white);
  border: 1px solid rgba(91, 183, 242, 0.3);
  box-shadow: 0 4px 15px rgba(30, 136, 217, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--main-blue) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(30, 136, 217, 0.5);
  border-color: rgba(91, 183, 242, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: var(--main-blue);
  border: 2px solid var(--main-blue);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--main-blue) 0%, var(--light-blue) 100%);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 136, 217, 0.4);
}

.btn-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--light-blue);
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  position: relative;
}

.btn-text:hover {
  color: var(--text-white);
  background: rgba(30, 136, 217, 0.1);
  backdrop-filter: blur(10px);
  transform: translateX(5px);
}

/* ========================================
   Sections
   ======================================== */

.section {
  padding: 100px 20px;
  border-top: 1px solid rgba(30, 136, 217, 0.1);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(30, 136, 217, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(91, 183, 242, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlow 10s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.section .container {
  position: relative;
  z-index: 1;
}

.section:nth-child(odd) {
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(30, 136, 217, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(91, 183, 242, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 136, 217, 0.05) 0%, transparent 80%),
    var(--deep-dark);
}

.section:nth-child(even) {
  background: 
    radial-gradient(ellipse at 90% 20%, rgba(30, 136, 217, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(91, 183, 242, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(91, 183, 242, 0.05) 0%, transparent 80%),
    var(--card-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-size: 2.75rem;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--main-blue), var(--light-blue));
  border-radius: 2px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

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

/* ========================================
   Page Header
   ======================================== */

.page-header {
  padding: 140px 20px 80px;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(30, 136, 217, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(91, 183, 242, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 136, 217, 0.08) 0%, transparent 80%),
    linear-gradient(135deg, var(--deep-dark) 0%, var(--card-bg) 100%);
  text-align: center;
  margin-top: 70px;
  border-bottom: 1px solid rgba(30, 136, 217, 0.15);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(30, 136, 217, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(91, 183, 242, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: headerGlow 6s ease-in-out infinite alternate;
}

@keyframes headerGlow {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header.about-header {
  background: 
    radial-gradient(circle at 20% 30%, rgba(30, 136, 217, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(91, 183, 242, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--deep-dark) 0%, rgba(30, 136, 217, 0.1) 100%);
}

.page-title {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--light-blue) 50%, var(--main-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--main-blue), transparent);
  border-radius: 2px;
}

.page-subtitle {
  font-size: 1.35rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ========================================
   Cards
   ======================================== */

.stat-card,
.event-card,
.benefit-card,
.value-card,
.contact-info-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(30, 136, 217, 0.2);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(30, 136, 217, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-card::before,
.event-card::before,
.benefit-card::before,
.value-card::before,
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 136, 217, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before,
.event-card:hover::before,
.benefit-card:hover::before,
.value-card:hover::before,
.contact-info-card:hover::before {
  left: 100%;
}

.stat-card:hover,
.event-card:hover,
.benefit-card:hover,
.value-card:hover,
.contact-info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(30, 136, 217, 0.4), inset 0 0 50px rgba(30, 136, 217, 0.1);
  border-color: rgba(30, 136, 217, 0.5);
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.9) 100%);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--main-blue) 0%, var(--light-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(30, 136, 217, 0.3);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Featured Event */
.featured-event-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(11, 15, 20, 0.9) 100%);
  border: 1px solid rgba(30, 136, 217, 0.25);
  border-radius: 20px;
  padding: 50px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(30, 136, 217, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.featured-event-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.1) 0%, transparent 70%);
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% {
    transform: rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.6;
  }
}

.featured-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(30, 136, 217, 0.4), inset 0 0 60px rgba(30, 136, 217, 0.12);
  border-color: rgba(30, 136, 217, 0.5);
}

.event-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.event-game-logo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.event-meta h3 {
  margin-bottom: 10px;
}

.event-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-open {
  background-color: var(--success-green);
  color: var(--text-white);
}

.badge-coming {
  background-color: var(--warning-orange);
  color: var(--text-white);
}

.badge-full {
  background-color: var(--subtle-red);
  color: var(--text-white);
}

.event-details {
  margin-bottom: 30px;
}

.event-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 136, 217, 0.15);
}

.detail-label {
  font-weight: 600;
  color: var(--text-primary);
}

.detail-value {
  color: var(--text-muted);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.event-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.event-card h3 {
  margin-bottom: 15px;
}

.event-info-list {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.event-info-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 136, 217, 0.15);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.event-info-list li strong {
  color: var(--text-primary);
  margin-right: 8px;
}

/* About Section */
.about-teaser-grid,
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser-content p,
.content-column p {
  margin-bottom: 20px;
}

.about-teaser-image img,
.image-column img {
  border-radius: 20px;
  border: 1px solid rgba(30, 136, 217, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(30, 136, 217, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-teaser-image img::before,
.image-column img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 136, 217, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.about-teaser-image:hover img,
.image-column:hover img {
  transform: scale(1.05);
  border-color: rgba(30, 136, 217, 0.5);
  box-shadow: 0 15px 40px rgba(30, 136, 217, 0.4), inset 0 0 50px rgba(30, 136, 217, 0.1);
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(30, 136, 217, 0.2);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(30, 136, 217, 0.05);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(30, 136, 217, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 136, 217, 0.3), inset 0 0 50px rgba(30, 136, 217, 0.1);
  border-color: rgba(30, 136, 217, 0.5);
}

.quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--main-blue);
  line-height: 1;
  margin-bottom: 20px;
}

.mission-card h3 {
  margin-bottom: 20px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  color: var(--light-blue);
  filter: drop-shadow(0 0 10px rgba(91, 183, 242, 0.5));
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(91, 183, 242, 0.8));
  color: var(--main-blue);
}

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

.value-card h3 {
  margin-bottom: 15px;
  color: var(--main-blue);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.team-member-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(30, 136, 217, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(30, 136, 217, 0.05);
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.1) 0%, transparent 70%);
  transition: transform 0.5s ease;
  transform: scale(0);
}

.team-member-card:hover::before {
  transform: scale(1);
}

.team-member-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(30, 136, 217, 0.5);
  box-shadow: 0 15px 40px rgba(30, 136, 217, 0.4), inset 0 0 50px rgba(30, 136, 217, 0.1);
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 25px;
  border: 4px solid var(--main-blue);
  box-shadow: 0 0 30px rgba(30, 136, 217, 0.5);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.team-member-card:hover .team-photo {
  transform: scale(1.1);
  border-color: var(--light-blue);
  box-shadow: 0 0 40px rgba(91, 183, 242, 0.8);
}

.team-role {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 5px;
}

.team-socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  color: var(--light-blue);
  transition: color 0.2s ease;
}

.team-socials a:hover {
  color: var(--main-blue);
}

/* Timeline (Past Events) */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--main-blue) 0%, var(--light-blue) 100%);
  box-shadow: 0 0 10px rgba(30, 136, 217, 0.5);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-blue) 0%, var(--light-blue) 100%);
  border: 4px solid var(--card-bg);
  box-shadow: 0 0 15px rgba(30, 136, 217, 0.6);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(91, 183, 242, 0.8);
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.winner-highlight {
  color: var(--light-blue);
  font-weight: 600;
}

/* Partners/Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  color: var(--light-blue);
  filter: drop-shadow(0 0 10px rgba(91, 183, 242, 0.5));
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(91, 183, 242, 0.8));
  color: var(--main-blue);
}

.benefit-card h3 {
  margin-bottom: 15px;
}

.partnership-intro {
  margin-bottom: 50px;
}

.partnership-description {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.tier-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(30, 136, 217, 0.2);
  border-radius: 20px;
  padding: 45px 35px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(30, 136, 217, 0.05);
}

.tier-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--main-blue), var(--light-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tier-card:hover::after {
  transform: scaleX(1);
}

.tier-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(30, 136, 217, 0.5);
  box-shadow: 0 15px 40px rgba(30, 136, 217, 0.4), inset 0 0 50px rgba(30, 136, 217, 0.1);
}

.tier-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tier-gold {
  background-color: #ffd700;
  color: #000;
}

.tier-silver {
  background-color: #c0c0c0;
  color: #000;
}

.tier-bronze {
  background-color: #cd7f32;
  color: #fff;
}

.tier-features {
  list-style: none;
  margin-top: 20px;
}

.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 136, 217, 0.15);
  font-size: 0.95rem;
}

.tier-features li:last-child {
  border-bottom: none;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(30, 136, 217, 0.2);
  border-radius: 10px;
  padding: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-silver);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--main-blue);
  box-shadow: 0 0 0 3px rgba(30, 136, 217, 0.3), 0 0 20px rgba(30, 136, 217, 0.2);
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.9) 100%);
  transform: translateY(-2px);
}

.form-message {
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: rgba(16, 185, 129, 0.2);
  color: var(--success-green);
  border: 1px solid var(--success-green);
  display: block;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.2);
  color: var(--subtle-red);
  border: 1px solid var(--subtle-red);
  display: block;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--text-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  text-align: center;
  padding: 25px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  color: var(--light-blue);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: var(--main-blue);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: 
    radial-gradient(circle at 30% 50%, rgba(30, 136, 217, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(91, 183, 242, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--deep-dark) 0%, rgba(30, 136, 217, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(30, 136, 217, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(91, 183, 242, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

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

/* ========================================
   Footer
   ======================================== */

.footer {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(30, 136, 217, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(91, 183, 242, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--deep-dark) 0%, rgba(11, 15, 20, 0.95) 100%);
  border-top: 1px solid rgba(30, 136, 217, 0.15);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(30, 136, 217, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(91, 183, 242, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links h4,
.footer-social h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(30, 136, 217, 0.2);
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.5) 0%, rgba(17, 24, 39, 0.5) 100%);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 217, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.social-links a:hover::before {
  width: 100%;
  height: 100%;
}

.social-links a:hover {
  color: var(--light-blue);
  border-color: rgba(30, 136, 217, 0.5);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 20px rgba(30, 136, 217, 0.4);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(30, 136, 217, 0.3) 50%, transparent 100%);
  margin: 30px 0;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-silver);
}

/* ========================================
   Animations
   ======================================== */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Skip to main content (accessibility) */
.skip-to-main {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 10px 20px;
  background: var(--main-blue);
  color: var(--text-white);
  text-decoration: none;
}

.skip-to-main:focus {
  left: 0;
}
