/* Arsenal.best Modern Design System */
:root {
  --arsenal-red: #EF0107;
  --arsenal-dark: #063672;
  --arsenal-gold: #9C824A;
  --white: #FFFFFF;
  --dark-bg: #0A0E27;
  --gradient-red: linear-gradient(135deg, #EF0107 0%, #DA0000 100%);
  --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #063672 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Hero Section with Parallax */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(10, 14, 39, 0.8), rgba(239, 1, 7, 0.3)),
              url('/images/emirates-hero.jpg') center/cover fixed;
  color: white;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(239, 1, 7, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--arsenal-gold);
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 0 !important;
  width: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999 !important;
  transition: all 0.3s;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

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

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

/* Live Match Ticker */
.live-ticker {
  background: var(--gradient-red);
  color: white;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  animation: scroll 30s linear infinite;
}

.ticker-item {
  padding: 0 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-badge {
  background: white;
  color: var(--arsenal-red);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}

/* Interactive Cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(239, 1, 7, 0.2);
}

.card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--arsenal-red);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
}

.card-content {
  padding: 25px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.card-description {
  color: #666;
  margin-bottom: 20px;
}

.card-cta {
  display: inline-block;
  background: var(--gradient-red);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.card-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(239, 1, 7, 0.4);
}

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

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
}