/* SportsArenaBar.net - Modern Dynamic Sports Ticket Platform Design */
:root {
  /* Modern Color Palette */
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #f59e0b;
  --secondary-dark: #d97706;
  --accent-color: #10b981;
  --accent-dark: #059669;
  --success-color: #22c55e;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #3b82f6;

  /* Background Colors */
  --bg-primary: #0f0f23;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --bg-glass: rgba(255, 255, 255, 0.1);
  --bg-glass-hover: rgba(255, 255, 255, 0.2);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-accent: #fbbf24;

  /* Border Colors */
  --border-primary: #334155;
  --border-secondary: #475569;
  --border-accent: #6366f1;

  /* Shadow Colors */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
  --shadow-glow-lg: 0 0 40px rgba(99, 102, 241, 0.4);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-hero: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  --gradient-card: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Animation Timings */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

h6 {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0.7rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  z-index: 1001;
  flex-shrink: 0;
}

.navbar-brand:hover {
  color: var(--primary-light);
  transform: scale(1.05);
}

.navbar-logo {
  width: 40px;
  height: auto;
  margin-right: 0.75rem;
  border-radius: 8px;
  object-fit: contain;
}

.navbar-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left var(--transition-normal);
  z-index: -1;
  border-radius: 25px;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.nav-link-cta {
  background: var(--gradient-secondary);
  color: var(--text-primary) !important;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: none;
}

.nav-link-cta::before {
  background: rgba(255, 255, 255, 0.2);
}

.nav-link-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary) !important;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all var(--transition-normal);
  z-index: 1001;
  position: relative;
}

.navbar-toggle:hover {
  background: var(--bg-glass);
}

.navbar-toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.navbar-toggle-bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  border-radius: 2px;
  transition: all var(--transition-normal);
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
  animation: float 20s ease-in-out infinite;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: var(--text-primary);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: expand 1.5s ease-out 0.5s both;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--text-primary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--bg-glass);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid var(--border-primary);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

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

.hero-visual {
  animation: slideInRight 1s ease-out 0.3s both;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 500px;
}

.card-float {
  position: absolute;
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.card-float:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.card-float.card-1 {
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.card-float.card-2 {
  top: 20%;
  right: 15%;
  animation: float 6s ease-in-out infinite 2s;
}

.card-float.card-3 {
  bottom: 30%;
  left: 20%;
  animation: float 6s ease-in-out infinite 4s;
}

.card-float.card-4 {
  bottom: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite 1s;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.card-content i {
  font-size: 2rem;
  color: var(--primary-color);
}

.card-content span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: var(--text-primary);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Sports Section */
.sports-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.sport-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

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

.sport-card:hover::before {
  transform: scaleX(1);
}

.sport-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.sport-icon i {
  font-size: 2rem;
  color: var(--text-primary);
}

.sport-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sport-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.sport-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-tag {
  padding: 0.25rem 0.75rem;
  background: var(--bg-glass);
  color: var(--text-accent);
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border-secondary);
}

.sport-providers {
  display: flex;
  gap: 0.75rem;
}

.provider-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-glass);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-primary);
}

.provider-btn:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.provider-btn img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.step-content {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  padding: 3rem 2rem 2rem;
  transition: all var(--transition-normal);
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

.step-icon i {
  font-size: 2rem;
  color: var(--text-primary);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

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

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--text-primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars i {
  color: var(--text-accent);
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

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

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-particles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(99,102,241,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-particles)"/></svg>');
  animation: float 15s ease-in-out infinite;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-primary);
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-divider {
  border-color: var(--border-primary);
  margin: 3rem 0 2rem;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-disclaimer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.footer-disclaimer p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  backdrop-filter: blur(20px);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cookie-text h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-text p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

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

@keyframes expand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
  }
}

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

/* Animation Classes */
.animate-in {
  animation: fadeInUp 0.8s ease-out;
}

.section-visible {
  animation: fadeInUp 1s ease-out;
}

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

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Hamburger Menu Animation */
.hamburger-bar-1-open {
  transform: rotate(45deg) translate(5px, 5px) !important;
}

.hamburger-bar-2-open {
  opacity: 0 !important;
}

.hamburger-bar-3-open {
  transform: rotate(-45deg) translate(7px, -6px) !important;
}

.hamburger-bar-reset {
  transform: none !important;
  opacity: 1 !important;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: var(--shadow-lg);
}

/* Navbar Active State */
.navbar-nav .nav-link.active {
  background: var(--gradient-primary);
  color: var(--text-primary) !important;
}

.navbar-nav .nav-link.active::before {
  display: none;
}

/* Navbar Brand Animation */
.navbar-brand {
  animation: fadeInLeft 0.8s ease-out;
}

/* Navbar Links Animation */
.navbar-nav .nav-link {
  animation: fadeInRight 0.8s ease-out;
}

.navbar-nav .nav-link:nth-child(1) { animation-delay: 0.1s; }
.navbar-nav .nav-link:nth-child(2) { animation-delay: 0.2s; }
.navbar-nav .nav-link:nth-child(3) { animation-delay: 0.3s; }
.navbar-nav .nav-link:nth-child(4) { animation-delay: 0.4s; }

/* Utility Classes */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Mobile Menu Backdrop */
.navbar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.navbar-backdrop.show {
  display: block;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0.75rem 1rem;
    min-height: 60px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--border-primary);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    z-index: 999;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
  }

  .navbar-nav.open {
    display: flex;
    transform: translateY(0);
  }

  .nav-link {
    padding: 1rem 1.5rem;
    margin: 0.25rem 0;
    text-align: center;
    width: 100%;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .nav-link-cta {
    margin-top: 1rem;
    background: var(--gradient-primary);
  }

  .navbar-title {
    font-size: 1.25rem;
  }

  .navbar-logo {
    width: 35px;
    height: 35px;
    margin-right: 0.5rem;
  }

  /* Extra small screens */
  @media (max-width: 480px) {
    .navbar-inner {
      padding: 0.5rem 0.75rem;
    }

    .navbar-title {
      font-size: 1.1rem;
    }

    .navbar-logo {
      width: 30px;
      height: 30px;
      margin-right: 0.4rem;
    }
  }


  /* Prevent body scroll when mobile menu is open */
  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .floating-cards {
    height: 300px;
  }

  .card-float {
    padding: 1rem;
  }

  .card-content i {
    font-size: 1.5rem;
  }

  .sports-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
    padding-top: 80px;
  }

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

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

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .sport-card,
  .feature-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection Colors */
::selection {
  background: var(--primary-color);
  color: var(--text-primary);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--text-primary);
}

/* Contact Page Styles */
.contact-hero-section {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-particles" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(99,102,241,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-particles)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-content-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.contact-form-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.contact-form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-form {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-primary);
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  background: var(--bg-primary);
	color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-control:focus::placeholder {
  opacity: 0.5;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.contact-info-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-glass);
  border-radius: 16px;
  border: 1px solid var(--border-secondary);
  transition: all var(--transition-normal);
}

.contact-info-item:hover {
  background: var(--bg-glass-hover);
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.contact-info-icon i {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.contact-info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info-content a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.contact-info-content a:hover {
  color: var(--primary-color);
}

.contact-info-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.faq-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-secondary);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-answer p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.alert {
  border-radius: 16px;
  border: none;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.alert-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.alert-content i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.alert-content div {
  flex: 1;
}

.alert-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.alert-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--success-color);
  color: var(--text-primary);
}

.alert-success i {
  color: var(--success-color);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--error-color);
  color: var(--text-primary);
}

.alert-danger i {
  color: var(--error-color);
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--text-primary);
  animation: spin 1s ease-in-out infinite;
}

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

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 6rem 0 3rem;
  }

  .contact-content-section {
    padding: 3rem 0;
  }

  .contact-form-card,
  .contact-info-card,
  .faq-card {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info-item {
    padding: 1rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-icon i {
    font-size: 1rem;
  }

  .faq-item {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-form-card,
  .contact-info-card,
  .faq-card {
    padding: 1.5rem;
  }

  .contact-form-header h3 {
    font-size: 1.5rem;
  }

  .contact-info-header h3,
  .faq-header h3 {
    font-size: 1.25rem;
  }
}

/* Legal Pages Styles */
.legal-hero-section {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.legal-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-particles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(99,102,241,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-particles)"/></svg>');
  animation: float 25s ease-in-out infinite;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.legal-content-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.legal-content-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.legal-info-alert {
  background: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--primary-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.legal-info-alert .alert-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.legal-info-alert .alert-content i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.legal-info-alert .alert-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.legal-info-alert .alert-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-content {
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-secondary);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 1rem 0;
}

.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-subsection {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg-glass);
  border-radius: 16px;
  border: 1px solid var(--border-secondary);
  transition: all var(--transition-normal);
}

.legal-subsection:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.legal-subsection h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.contact-info-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-secondary);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: all var(--transition-normal);
}

.contact-info-box:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-box li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-box a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.contact-info-box a:hover {
  color: var(--primary-color);
}

.legal-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.legal-link:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-primary);
  text-align: center;
}

.legal-footer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-hero-section {
    padding: 6rem 0 3rem;
  }

  .legal-content-section {
    padding: 3rem 0;
  }

  .legal-content-card {
    padding: 2rem;
    margin: 0 1rem;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

  .legal-section h3 {
    font-size: 1.1rem;
  }

  .legal-subsection {
    padding: 1.25rem;
  }

  .contact-info-box {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .legal-content-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .legal-section h2 {
    font-size: 1.1rem;
  }

  .legal-subsection {
    padding: 1rem;
  }

  .contact-info-box {
    padding: 1rem;
  }
}