/* ==========================================================================
   AdTech Meetup 2027 - Advanced SVG Animations & WOW Presentation Effects
   ========================================================================== */

/* Keyframe Animations */
@keyframes hudRotateClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hudDashStream {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}

@keyframes heroSparkDrift {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.6; }
  50% { transform: translateY(-10px) rotate(180deg) scale(1.1); opacity: 0.9; filter: drop-shadow(0 0 6px #00e5ff); }
}

/* ==========================================================================
   Hero Section Animated SVG Backdrop
   ========================================================================== */
.hero-svg-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.85;
}

.hero-svg-backdrop .search-beam {
  stroke-dasharray: 120 40;
  animation: hudDashStream 14s linear infinite;
}

.hero-svg-backdrop .rotating-reticle {
  transform-origin: 85% 35%;
  animation: hudRotateClockwise 35s linear infinite;
}

.hero-svg-backdrop .spark-item {
  animation: heroSparkDrift 4s ease-in-out infinite;
}

.hero-svg-backdrop .spark-item-2 {
  animation: heroSparkDrift 6s ease-in-out infinite 2s;
}

/* Hero Badge Showcase */
.hero-features-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.hero-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-feature-chip:hover {
  border-color: #ff007a;
  box-shadow: 0 6px 25px rgba(255, 0, 122, 0.3), inset 0 0 15px rgba(255, 0, 122, 0.2);
  transform: translateY(-2px);
}

.hero-feature-chip svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 4px #00e5ff);
}



/* ==========================================================================
   Schedule Presentations Animated SVG Visualizers
   ========================================================================== */
.presentation-svg-card-header {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0f19 0%, #151a2e 100%);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.schedule-block:hover .presentation-svg-card-header {
  border-color: #ff007a;
  box-shadow: 0 10px 30px rgba(255, 0, 122, 0.25);
  transform: translateY(-3px);
}

.presentation-svg-icon {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  transition: transform 0.4s ease;
}

.schedule-block:hover .presentation-svg-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 14px rgba(255, 0, 122, 0.6));
}

.presentation-topic-meta {
  flex-grow: 1;
  padding-left: 16px;
}

.presentation-topic-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.15);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.3);
  margin-bottom: 5px;
}

.presentation-topic-pill.pill-magenta {
  background: rgba(255, 0, 122, 0.15);
  color: #ff007a;
  border-color: rgba(255, 0, 122, 0.3);
}

.presentation-topic-tech {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
}

/* Fluid Section Venue Badge */
.fluid-venue-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 10;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 14px;
  padding: 14px 22px;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.fluid-venue-badge .venue-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #00e5ff 0%, #ff007a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fluid-venue-badge .venue-detail {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-features-strip {
    gap: 8px;
  }
  .hero-feature-chip {
    padding: 6px 12px;
    font-size: 11px;
  }
  .presentation-showcase-box {
    max-width: 100%;
  }
  .hud-badge-tag.tag-top-left {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
  }
  .hud-badge-tag.tag-bottom-left {
    display: none;
  }
  .hud-badge-tag.tag-bottom-right {
    bottom: 10px;
    right: 10px;
    padding: 6px 10px;
  }
  .presentation-svg-card-header {
    height: auto;
    padding: 12px;
  }
  .presentation-svg-icon {
    width: 60px;
    height: 60px;
  }
}
