/* Top 10 Events Section Styles */
.top-events-section {
  background-color: black;
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%); */
  position: relative;
  overflow: hidden;
}

.top-events-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  /* background: radial-gradient(ellipse at bottom, rgba(0, 191, 255, 0.3) 30%, transparent 0%); */
  pointer-events: none;
}

.event-number {
  font-family: 'Arial Black', Arial, sans-serif;
  /* color: #2795e9; */
  font-weight: 900;
  text-shadow: 
    0 0 10px rgba(0, 191, 255, 0.1),
    0 0 20px rgba(0, 191, 255, 0.1),
    0 0 30px rgba(0, 191, 255, 0.1);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 
      0 0 10px rgba(0, 191, 255, 0.3),
      0 0 20px rgba(0, 191, 255, 0.3),
      0 0 30px rgba(0, 191, 255, 0.3);
  }
  to {
    text-shadow: 
      0 0 15px rgba(0, 191, 255, 0.3),
      0 0 25px rgba(0, 191, 255, 0.3),
      0 0 35px rgba(0, 191, 255, 0.3);
  }
}

.event-poster {
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.event-button {
  background: #1d1d1d;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgb(2, 141, 255);
}


.rounded-tab-top {
  --r: 0.8em; /* control the curvature */
  border-inline: var(--r) solid #0000;
  border-radius: 0 0 calc(2*var(--r)) calc(2*var(--r)) / var(--r);
  mask: 
    radial-gradient(var(--r) at var(--r) 100%, #0000 98%, #000 101%)
      calc(-1*var(--r)) 0/100% var(--r) repeat-x,
    conic-gradient(#000 0 0) padding-box;
}


.feature-check {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #2287da, #0f74c4);
  color: white;
}

.bottom {
  --_m:100%/calc(2*var(--r)) calc(2*var(--r)) no-repeat
    radial-gradient(50% 50%,#000 calc(100% - 1px),#0000);
  mask:
    calc(50% + var(--_d)) var(--_m),calc(50% - var(--_d)) var(--_m),
    radial-gradient(var(--s) at 50% calc(100% + sin(var(--a))*var(--s)),
      #0000 100%,#000 calc(100% + 1px)) 0 calc(var(--r)*(sin(var(--a)) - 1)) no-repeat,
    linear-gradient(90deg,#000 calc(50% - var(--_d)),#0000 0 calc(50% + var(--_d)),#000 0);
}
.blue-shadow {
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgb(2, 141, 255);
}

.extra-blue-shadow {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgb(2, 141, 255);
}

/* Accordion smooth transitions */
.dropdown-triangle {
    display: inline-block;
    transition: transform 0.3s ease;
}

.accordion-body {
    transition: all 0.3s ease;
}

.ticketPurchaseModel > div:first-child,
.package-item > div:first-child,
.transport-item > div:first-child {
    transition: border-radius 0.3s ease;
}

.image-shadow {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(2, 141, 255, 0.7));
}

.white-shadow {
    transition: all 0.3s ease;
    box-shadow: 0 -10px 80px -10px rgba(255,255,255,0.4);
}

.text-shadow-lg {
  text-shadow: 0 0 20px rgb(2, 141, 255); /* blue glow */
}



.text-shadow-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(49, 149, 234, 0.3);
  filter: blur(5px);
  border-radius: 100px;
  z-index: -1; /* stays behind text */
}


.dark-shadow-button {
    background: #1d1d1d;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(2, 141, 255);
    padding: 10px 20px;
    border-radius: 100px;
}

.dark-shadow-buttonwp {
    background: #1d1d1d;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(2, 141, 255);
    padding: 7px 20px;
    border-radius: 100px;
}

.white-shadow-button {
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(2, 141, 255);
    padding: 10px 20px;
    border-radius: 100px;
}
.languageSelector {
    background: #1d1d1d;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(2, 141, 255);
    border-radius: 100px;
    padding: 2px;
}

.language-option #weglot-language-en{
    color: white !important;
}

.event-button:hover {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgb(2, 141, 255);
  transform: translateY(-2px);
}

.weglot_switcher.skewed .language-list{
    background-color: transparent !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .event-number {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .top-events-section {
    padding: 2rem 0;
  }
  
  .event-number {
    font-size: 3rem;
  }
  
  .top-events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .top-events-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}


/* ============================================
   ANIMATED BLUE BLOBS - Fixed Background
   ============================================ */

/* Base Blob Styles - Fixed to viewport */
.blob {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 149, 234, 0.8) 0%, rgba(38, 149, 234, 0.5) 30%, rgba(38, 149, 234, 0.2) 60%, transparent 100%);
  filter: blur(60px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  will-change: transform, opacity, filter;
}

/* Desktop - 3 strategically placed blobs - well spaced */
.blob-1 { 
  width: 400px; 
  height: 400px; 
  top: 5%; 
  left: -100px; 
  animation: float1 20s ease-in-out infinite, pulse 6s ease-in-out infinite; 
}

.blob-2 { 
  width: 350px; 
  height: 350px; 
  top: 50%; 
  right: -80px; 
  animation: float2 24s ease-in-out infinite, pulse 7s ease-in-out infinite 2s; 
}

.blob-3 { 
  width: 380px; 
  height: 380px; 
  bottom: 10%; 
  left: 50%; 
  transform: translateX(-50%);
  animation: float3 18s ease-in-out infinite, pulse 5.5s ease-in-out infinite 4s; 
}

/* Float Animations - More visible, smooth movement */
@keyframes float1 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  25% { 
    transform: translate(120px, -80px) rotate(8deg); 
  }
  50% { 
    transform: translate(200px, 50px) rotate(-6deg); 
  }
  75% { 
    transform: translate(-60px, 100px) rotate(7deg); 
  }
}

@keyframes float2 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  30% { 
    transform: translate(-160px, 90px) rotate(-9deg); 
  }
  65% { 
    transform: translate(80px, -110px) rotate(6deg); 
  }
}

@keyframes float3 {
  0%, 100% { 
    transform: translate(-50%, 0) rotate(0deg); 
  }
  35% { 
    transform: translate(calc(-50% + 130px), 80px) rotate(8deg); 
  }
  70% { 
    transform: translate(calc(-50% - 100px), -70px) rotate(-7deg); 
  }
}

/* Pulse Animation - More noticeable breathing effect */
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    filter: blur(55px);
  }
  50% {
    opacity: 0.75;
    filter: blur(75px);
  }
}

/* ============================================
   RESPONSIVE - MOBILE & TABLET
   ============================================ */
@media (max-width: 1024px) {
  .blob {
    filter: blur(50px);
    opacity: 0.6;
  }
  
  .blob-1 { width: 300px; height: 300px; top: 8%; left: -80px; }
  .blob-2 { width: 280px; height: 280px; top: 48%; right: -70px; }
  .blob-3 { width: 290px; height: 290px; bottom: 12%; left: 50%; }
}

@media (max-width: 768px) {
  .blob {
    filter: blur(40px);
    opacity: 0.65;
  }
  
  .blob-1 { width: 250px; height: 250px; top: 10%; left: -60px; }
  .blob-2 { width: 230px; height: 230px; top: 50%; right: -50px; }
  .blob-3 { width: 240px; height: 240px; bottom: 15%; left: 50%; }
  
  /* Adjusted float animations for mobile */
  @keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(80px, -50px) rotate(6deg); }
    50% { transform: translate(120px, 30px) rotate(-4deg); }
    75% { transform: translate(-40px, 60px) rotate(5deg); }
  }
  
  @keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(-100px, 60px) rotate(-7deg); }
    65% { transform: translate(50px, -70px) rotate(5deg); }
  }
  
  @keyframes float3 {
    0%, 100% { transform: translate(-50%, 0) rotate(0deg); }
    35% { transform: translate(calc(-50% + 80px), 50px) rotate(6deg); }
    70% { transform: translate(calc(-50% - 60px), -40px) rotate(-5deg); }
  }
  
  /* Mobile-optimized pulse */
  @keyframes pulse {
    0%, 100% {
      opacity: 0.55;
      filter: blur(35px);
    }
    50% {
      opacity: 0.75;
      filter: blur(50px);
    }
  }
}

@media (max-width: 480px) {
  .blob {
    filter: blur(35px);
    opacity: 0.6;
  }
  
  .blob-1 { width: 200px; height: 200px; }
  .blob-2 { width: 180px; height: 180px; }
  .blob-3 { width: 190px; height: 190px; }
}
