/* ОПРАВЕН АНИМИРАН ФОН С БАЛОНЧЕТА */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.floating-logos-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.4;
  filter: brightness(1) invert(0) grayscale(0.3);
  animation: floatUp 20s infinite linear;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  bottom: -100px;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.8);
    opacity: 0.4;
    bottom: -100px;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120vh) translateX(20px) rotate(360deg) scale(1);
    opacity: 0;
    bottom: 100vh;
  }
}

/* Различни забавления за по-естествено движение */
.floating-logo:nth-child(5n+1) { animation-delay: 0s; animation-duration: 18s; }
.floating-logo:nth-child(5n+2) { animation-delay: 3s; animation-duration: 22s; left: 10%; }
.floating-logo:nth-child(5n+3) { animation-delay: 6s; animation-duration: 20s; left: 20%; }
.floating-logo:nth-child(5n+4) { animation-delay: 9s; animation-duration: 25s; left: 30%; }
.floating-logo:nth-child(5n+5) { animation-delay: 12s; animation-duration: 19s; left: 40%; }
.floating-logo:nth-child(5n+6) { animation-delay: 15s; animation-duration: 23s; left: 60%; }
.floating-logo:nth-child(5n+7) { animation-delay: 18s; animation-duration: 21s; left: 70%; }
.floating-logo:nth-child(5n+8) { animation-delay: 21s; animation-duration: 24s; left: 80%; }
.floating-logo:nth-child(5n+9) { animation-delay: 24s; animation-duration: 17s; left: 90%; }

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(0, 170, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
}

/* ОПРАВЕН НАВБАР - ДЕСКТОП: лого ляво, връзки център, actions дясно */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  z-index: 1000;
  padding: 12px 0;
  height: auto;
  min-height: 60px;
  box-sizing: border-box;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ff88, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  margin: 0 20px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  font-family: "Poppins", "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  min-width: 60px;
  text-transform: uppercase;
}

.lang-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 255, 136, 0.3);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  display: none;
  min-width: 140px;
  overflow: hidden;
  z-index: 1001;
}

.lang-dropdown.show {
  display: block;
  animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-option {
  padding: 10px 12px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-family: "Poppins", sans-serif;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: rgba(0, 255, 136, 0.15);
  color: #00ff88;
}

.lang-option.active {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px 60px;
  box-sizing: border-box;
}

.hero-content {
  max-width: 1000px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88, #00aaff);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", "Montserrat", sans-serif;
}

.hero h1 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 3.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00ff88, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.3);
  margin: 0 0 20px;
  position: relative;
  animation: titleGlow 4s ease-in-out infinite alternate;
  font-weight: 900;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.3); }
  100% { text-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 0 0 80px rgba(0, 255, 136, 0.5), 0 0 100px rgba(0, 255, 136, 0.3); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Georgia", "Times New Roman", serif;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00ff88, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 0.85rem;
  color: #888;
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Poppins", "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00aaff);
  color: #000;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.live-predictions {
  margin-top: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.4);
  backdrop-filter: blur(15px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.prediction-badge {
  background: linear-gradient(135deg, #ff6b6b, #ffa726);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
  font-family: "Poppins", "Montserrat", sans-serif;
}

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

.predictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.prediction-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.prediction-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(0, 255, 136, 0.4);
}

.prediction-type {
  font-size: 0.8rem;
  color: #00ff88;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

.prediction-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: "Georgia", serif;
}

.prediction-match {
  font-size: 0.75rem;
  color: #cccccc;
  opacity: 0.9;
  font-family: "Georgia", serif;
}

.features {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #00ff88, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 700;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}

.feature-description {
  color: #cccccc;
  line-height: 1.6;
  font-family: "Georgia", "Times New Roman", serif;
}

.how-it-works {
  padding: 100px 20px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00aaff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  font-family: "Poppins", sans-serif;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}

.step-description {
  color: #cccccc;
  line-height: 1.6;
  font-family: "Georgia", "Times New Roman", serif;
}

.featured-matches {
  padding: 100px 20px;
}

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

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

.view-all {
  color: #00ff88;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all:hover {
  gap: 12px;
}

.fixtures {
  display: block;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.league-section {
  margin-bottom: 20px;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.league-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00ff88 20%, #00aaff 50%, #00ff88 80%, transparent 100%);
  opacity: 0.8;
}

.league-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.league-header {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 170, 255, 0.15) 100%);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.league-header::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.6s ease;
}

.league-header:hover::before {
  left: 100%;
}

.league-header:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 170, 255, 0.2) 100%);
}

.league-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.league-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 3px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.league-header:hover .league-logo {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.league-name {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}

.league-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.match-count {
  background: linear-gradient(135deg, #00ff88, #00aaff);
  color: #000000;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.league-header:hover .match-count {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.toggle-icon {
  color: #ffffff;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  display: none;
}

.fixture {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 18px;
  min-height: 220px;
  cursor: pointer;
  backdrop-filter: blur(15px);
  overflow: hidden;
}

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

.fixture:hover::before {
  left: 100%;
}

.fixture:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.teams-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 160px;
  width: 100%;
  padding: 0 25px;
  box-sizing: border-box;
}

.team-home, .team-away {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 120px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  top: 15px;
}

.team-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  padding: 3px;
  margin-bottom: 8px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.fixture:hover .team-logo {
  transform: scale(1.12) rotate(2deg);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.team-name {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
  max-width: 100%;
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  font-family: "Georgia", serif;
}

.fixture:hover .team-name {
  color: #00ff88;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.vs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.7), 0 0 30px rgba(0, 255, 136, 0.4);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.fixture:hover .vs-center {
  transform: translate(-50%, -50%) scale(1.2);
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.9), 0 0 50px rgba(0, 255, 136, 0.6);
}

.date {
  font-size: 0.9rem;
  color: #cccccc;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 12px;
  padding-top: 10px;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  font-family: "Georgia", serif;
}

.fixture:hover .date {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.importance-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(15px);
  border: 1px solid;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

.importance-high {
  background: linear-gradient(135deg, rgba(255, 50, 50, 0.9), rgba(220, 30, 30, 0.8));
  color: white;
  border-color: rgba(255, 100, 100, 0.6);
  animation: pulseHigh 2s ease-in-out infinite;
  box-shadow: 0 3px 15px rgba(255, 50, 50, 0.4);
}

.importance-medium {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.9), rgba(217, 119, 0, 0.8));
  color: white;
  border-color: rgba(255, 200, 0, 0.6);
  box-shadow: 0 3px 15px rgba(255, 165, 0, 0.4);
}

.importance-low {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.9), rgba(71, 85, 105, 0.8));
  color: white;
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 3px 15px rgba(100, 116, 139, 0.4);
}

.fixture:hover .importance-badge {
  transform: scale(1.1) translateY(-2px);
}

@keyframes pulseHigh {
  0%, 100% { box-shadow: 0 3px 15px rgba(255, 50, 50, 0.4); }
  50% { box-shadow: 0 3px 15px rgba(255, 50, 50, 0.4), 0 0 25px rgba(255, 50, 50, 0.6); }
}

.no-matches-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 35px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.no-matches-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.no-matches-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.no-matches-text {
  color: #cccccc;
  font-size: 1rem;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
  font-weight: 500;
  font-family: "Georgia", serif;
}

.mission {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 40px;
  font-family: "Georgia", "Times New Roman", serif;
}

/* 🔥 НОВИ СТИЛОВЕ ЗА FAQ СЕКЦИЯ */
.faq {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #00ff88;
}

.faq-toggle {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #00ff88;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 20px;
  font-family: "Georgia", serif;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #00ff88;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 700;
}

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

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Georgia", serif;
}

.footer-links a:hover {
  color: #00ff88;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-family: "Georgia", serif;
}

.ai-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ai-node {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  animation: nodePulse 6s ease-in-out infinite;
}

.ai-node:nth-child(1) { top: 20%; left: 10%; width: 100px; height: 100px; animation-delay: 0s; background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%); }
.ai-node:nth-child(2) { top: 60%; right: 15%; width: 150px; height: 150px; animation-delay: 2s; background: radial-gradient(circle, rgba(0, 170, 255, 0.2) 0%, transparent 70%); }
.ai-node:nth-child(3) { bottom: 30%; left: 20%; width: 80px; height: 80px; animation-delay: 4s; background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%); }

.ai-connection {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  animation: connectionFlow 8s linear infinite;
}

.ai-connection:nth-child(4) { top: 25%; left: 15%; width: 200px; height: 2px; animation-delay: 0s; }
.ai-connection:nth-child(5) { top: 65%; right: 20%; width: 150px; height: 2px; animation-delay: 3s; transform: rotate(45deg); }

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes connectionFlow {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

/* МОБИЛЕН ИЗГЛЕД - ДВУРЕДОВ НАВБАР */
@media (max-width: 768px) {
  .navbar { 
    padding: 8px 0; 
    min-height: 80px;
  }
  
  .nav-container { 
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
  }
  
  .nav-logo { 
    font-size: 1.1rem; 
    flex-shrink: 0;
    white-space: nowrap;
    overflow: visible;
    min-width: 140px;
  }
  
  .nav-links { 
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 5px;
    margin: 0;
    order: 2;
  }
  
  .nav-link { 
    padding: 6px 8px; 
    font-size: 0.75rem; 
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .language-switcher { 
    flex-shrink: 0;
  }
  
  .lang-btn { 
    padding: 5px 8px; 
    font-size: 0.7rem; 
    min-width: 50px; 
  }
  
  .lang-dropdown { 
    min-width: 120px; 
    right: 0;
  }
  
  .lang-option { 
    padding: 6px 8px; 
    font-size: 0.7rem; 
  }
  
  body { 
    padding-top: 80px;
  }
  
  .hero { 
    padding: 10px 10px 20px !important;  /* Намалено отстояние */ 
    min-height: 50vh !important;  /* Фабрична височина */
    margin-top: 40px !important;  /* Добавено */
  }
  
  .hero-content { 
    padding-top: 0; 
  }
  
  .hero-badge { 
    font-size: 0.75rem; 
    padding: 6px 12px; 
    margin-bottom: 15px; 
  }
  
  .hero h1 { 
    font-size: 2.2rem; 
    margin-bottom: 15px; 
    line-height: 1.2;
  }
  
  .hero-subtitle { 
    font-size: 1rem; 
    margin-bottom: 25px; 
    line-height: 1.5;
    padding: 0 10px;
  }
  
  .hero-stats { 
    gap: 25px; 
    margin-bottom: 30px; 
  }
  
  .stat-number { 
    font-size: 1.8rem; 
  }
  
  .stat-label { 
    font-size: 0.8rem; 
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .live-predictions { 
    padding: 20px 15px; 
    margin-top: 30px; 
  }
  
  .predictions-grid { 
    grid-template-columns: 1fr; 
    gap: 10px; 
  }
  
  .prediction-item { 
    padding: 12px; 
  }
  
  .prediction-badge { 
    font-size: 0.8rem; 
  }
  
  .section-title { 
    font-size: 2.2rem; 
    margin-bottom: 40px;
    padding: 0 15px;
  }
  
  .features { 
    padding: 60px 15px; 
  }
  
  .features-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  
  .feature-card { 
    padding: 25px 20px; 
  }
  
  .feature-icon { 
    font-size: 2.5rem; 
  }
  
  .feature-title { 
    font-size: 1.2rem; 
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
  
  .how-it-works { 
    padding: 60px 15px; 
  }
  
  .steps { 
    flex-direction: column; 
    gap: 30px; 
  }
  
  .step {
    min-width: auto;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .featured-matches { 
    padding: 60px 15px; 
  }
  
  .section-header { 
    flex-direction: column; 
    text-align: center; 
    gap: 15px;
  }
  
  .mission { 
    padding: 60px 15px; 
  }
  
  .mission-text {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .faq {
    padding: 60px 15px;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
    padding-bottom: 15px;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Floating logos adjustments for mobile */
  .floating-logo {
    width: 40px;
    height: 40px;
    opacity: 0.3;
  }
  
  .floating-logo:nth-child(n+8) {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 75px;
  }
  
  body {
    padding-top: 75px;
  }
  
  .nav-logo { 
    font-size: 1.2rem; 
  }
  
  .nav-link { 
    font-size: 0.8rem; 
    padding: 6px 8px; 
  }
  
  .lang-btn { 
    font-size: 0.75rem; 
    padding: 5px 8px; 
    min-width: 50px; 
  }
  
  .hero { 
    min-height: calc(100vh - 75px);
  }
  
  .hero h1 { 
    font-size: 1.9rem; 
  }
  
  .hero-subtitle { 
    font-size: 0.9rem; 
  }
  
  .hero-stats { 
    gap: 20px; 
  }
  
  .stat-number { 
    font-size: 1.5rem; 
  }
  
  .stat-label { 
    font-size: 0.75rem; 
  }
  
  .feature-card { 
    padding: 20px 15px; 
  }
  
  .feature-icon { 
    font-size: 2rem; 
  }
  
  .feature-title { 
    font-size: 1.1rem; 
  }
  
  .section-title { 
    font-size: 1.9rem; 
  }
  
  .league-name { 
    font-size: 1rem; 
  }
  
  .match-count { 
    font-size: 0.75rem; 
    padding: 4px 8px; 
  }
  
  .team-logo {
    width: 60px;
    height: 60px;
  }
  
  .team-name {
    font-size: 0.85rem;
  }
  
  .floating-logo {
    width: 35px;
    height: 35px;
    opacity: 0.25;
  }
  
  .floating-logo:nth-child(n+6) {
    display: none;
  }
}

/* Допълнителни корекции за много малки екрани */
@media (max-width: 360px) {
  .nav-container {
    padding: 0 10px;
  }
  
  .nav-logo {
    font-size: 1.1rem;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-link {
    font-size: 0.75rem;
    padding: 5px 6px;
  }
  
  .lang-btn {
    min-width: 45px;
    font-size: 0.7rem;
  }
  
  .hero h1 {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
}

/* 🔧 КОРИГИРАНЕ НА ПО-ДЪЛГИ FAQ ВЪПРОСИ ЗА МОБИЛНИ */
@media (max-width: 768px) {
  .faq-question span:first-child {
    text-align: left;
    line-height: 1.4;
    padding-right: 10px;
  }
  
  /* Специфични корекции за най-дългите въпроси */
  .faq-item:nth-child(7) .faq-question span:first-child,
  .faq-item:nth-child(14) .faq-question span:first-child {
    font-size: 0.85rem;
    word-wrap: break-word;
  }
}

/* 🔥 СТИЛОВЕ ЗА FAQ КАТЕГОРИИ */
.faq-category {
  margin-bottom: 20px;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00ff88 20%, #00aaff 50%, #00ff88 80%, transparent 100%);
  opacity: 0.8;
}

.faq-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.faq-category-header {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 170, 255, 0.15) 100%);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-category-header::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.6s ease;
}

.faq-category-header:hover::before {
  left: 100%;
}

.faq-category-header:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 170, 255, 0.2) 100%);
}

.faq-category-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.faq-category-icon {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.faq-category-header:hover .faq-category-icon {
  transform: scale(1.1) rotate(5deg);
}

.faq-category-name {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}

.faq-category-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-count {
  background: linear-gradient(135deg, #00ff88, #00aaff);
  color: #000000;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.faq-category-header:hover .faq-count {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.faq-category-toggle {
  color: #ffffff;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.faq-category-content {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
}

/* 🎯 СКРИТИ FAQ ВЪПРОСИ */
.hidden-faqs {
  display: none;
}

.hidden-faqs.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Мобилна версия за FAQ категории */
@media (max-width: 768px) {
  .faq-category-header {
    padding: 15px 20px;
  }
  
  .faq-category-name {
    font-size: 1.1rem;
  }
  
  .faq-count {
    font-size: 0.75rem;
    padding: 4px 8px;
    min-width: 60px;
  }
  
  .faq-category-content {
    padding: 15px;
  }
}

/* 🔧 FIX ЗА МИГАЩИТЕ КАРЕТА ПРИ HOVER - ДЕСКТОП */
@media (min-width: 769px) {
    .fixture {
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fixture:hover {
        z-index: 100;
        transform: translateY(-6px) scale(1.02);
    }

    /* Подсигуряваме, че няма overlap между каретата */
    .matches-grid {
        gap: 20px;
    }

    /* Забраняваме pointer events на всички деца, освен на целия fixture */
    .fixture * {
        pointer-events: none;
    }
    
    .fixture {
        pointer-events: auto;
    }
}

/* Допълнително подобрение за по-гладък hover */
.fixture::before {
    pointer-events: none;
}

.fixture:hover::before {
    pointer-events: none;
}
