/* ===== BEATZZ INDEX STYLES ===== */

:root {
  --beatzz-primary: #ff3158;
  --beatzz-secondary: #ff6b8a;
  --beatzz-bg: #090b13;
  --beatzz-surface: #0f1220;
  --beatzz-surface-light: rgba(255,255,255,0.05);
  --beatzz-text: #ecf2ff;
  --beatzz-text-muted: #a7afc6;
  --beatzz-border: rgba(255,255,255,0.1);
  --beatzz-radius: 16px;
  --beatzz-glow: 0 10px 40px rgba(255,49,88,0.25);
  --beatzz-shadow: 0 20px 60px rgba(0,0,0,0.4);
  --beatzz-gradient: linear-gradient(135deg, var(--beatzz-primary) 0%, #d92a4d 100%);
}

/* Video Background */
.beatzz-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.beatzz-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.3) contrast(1.2) saturate(1.1);
  transform: scale(1.1);
  animation: videoZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
  0% { transform: scale(1.1) rotate(0deg); }
  100% { transform: scale(1.15) rotate(1deg); }
}

.beatzz-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255,49,88,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,107,138,0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(9,11,19,0.7) 0%, rgba(15,18,32,0.8) 100%);
  backdrop-filter: blur(1px);
}

/* Container */
.beatzz-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .beatzz-container {
    padding: 0 1rem;
  }
}

/* Hero Section */
.beatzz-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.beatzz-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255,49,88,0.1) 0%, transparent 70%),
    conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255,49,88,0.05) 90deg, transparent 180deg, rgba(255,107,138,0.05) 270deg, transparent 360deg);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% { opacity: 0.3; transform: rotate(0deg) scale(1); }
  100% { opacity: 0.6; transform: rotate(180deg) scale(1.1); }
}

.beatzz-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.beatzz-logo-container {
  margin-bottom: 2rem;
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
}

.beatzz-logo-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,49,88,0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: logoPulse 4s ease-in-out infinite;
  z-index: -1;
}

.beatzz-hero-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 15px 40px rgba(255,49,88,0.6)) drop-shadow(0 5px 15px rgba(255,49,88,0.3));
  transition: all 0.3s ease;
}

.beatzz-hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 50px rgba(255,49,88,0.8)) drop-shadow(0 8px 20px rgba(255,49,88,0.4));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* Hero Title */
.beatzz-hero-title {
  margin-bottom: 2rem;
  line-height: 1.1;
}

.beatzz-title-line {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.beatzz-title-line:first-child {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--beatzz-text);
  margin-bottom: 0.5rem;
}

.beatzz-title-highlight {
  font-size: clamp(4rem, 10vw, 8rem);
  background: linear-gradient(135deg, var(--beatzz-primary) 0%, #ff6b8a 50%, #d92a4d 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255,49,88,0.5);
  margin-bottom: 1rem;
  animation: titleGradient 3s ease-in-out infinite alternate;
  position: relative;
}

.beatzz-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80%;
  height: 4px;
  background: var(--beatzz-gradient);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  animation: titleUnderline 2s ease-out 1s forwards;
}

@keyframes titleGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes titleUnderline {
  to { transform: translateX(-50%) scaleX(1); }
}

.beatzz-title-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--beatzz-text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Hero Description */
.beatzz-hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--beatzz-text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Actions */
.beatzz-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* Buttons */
.beatzz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  user-select: none;
}

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

.beatzz-btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.beatzz-btn-primary {
  background: var(--beatzz-gradient);
  color: #fff;
  box-shadow: var(--beatzz-glow);
}

.beatzz-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255,49,88,0.4);
}

.beatzz-btn-secondary {
  background: var(--beatzz-surface);
  color: var(--beatzz-text);
  border: 1px solid var(--beatzz-border);
  backdrop-filter: blur(20px);
}

.beatzz-btn-secondary:hover {
  background: var(--beatzz-surface-light);
  border-color: var(--beatzz-primary);
  transform: translateY(-2px);
}

.beatzz-btn-outline {
  background: transparent;
  color: var(--beatzz-text);
  border: 2px solid var(--beatzz-primary);
}

.beatzz-btn-outline:hover {
  background: var(--beatzz-primary);
  color: #fff;
  transform: translateY(-2px);
}

.beatzz-btn::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;
}

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

.beatzz-btn:active {
  transform: translateY(0);
}

.beatzz-btn-icon {
  font-size: 1.2em;
}

.beatzz-btn-text {
  position: relative;
  z-index: 1;
}

/* Hero Stats */
.beatzz-hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.beatzz-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--beatzz-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.beatzz-stat-label {
  font-size: 0.9rem;
  color: var(--beatzz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll Indicator */
.beatzz-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.beatzz-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--beatzz-text-muted);
  border-radius: 12px;
  position: relative;
}

.beatzz-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--beatzz-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

.beatzz-scroll-text {
  font-size: 0.8rem;
  color: var(--beatzz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Section Styles */
.beatzz-features,
.beatzz-events,
.beatzz-cta {
  padding: 6rem 0;
  position: relative;
}

.beatzz-features {
  background: linear-gradient(180deg, transparent 0%, rgba(15,18,32,0.8) 100%);
}

.beatzz-events {
  background: rgba(15,18,32,0.9);
  backdrop-filter: blur(20px);
}

.beatzz-cta {
  background: linear-gradient(135deg, rgba(255,49,88,0.1) 0%, rgba(15,18,32,0.9) 100%);
}

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

.beatzz-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--beatzz-text);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.beatzz-section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--beatzz-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.beatzz-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.beatzz-feature-card {
  background: linear-gradient(145deg, var(--beatzz-surface) 0%, rgba(15,18,32,0.8) 100%);
  border: 1px solid var(--beatzz-border);
  border-radius: var(--beatzz-radius);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.beatzz-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--beatzz-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.beatzz-feature-card:hover::before {
  opacity: 1;
}

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

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

.beatzz-feature-description {
  color: var(--beatzz-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.beatzz-feature-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.beatzz-benefit {
  background: rgba(255,49,88,0.1);
  color: var(--beatzz-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,49,88,0.2);
}

/* Events Grid */
.beatzz-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.beatzz-event-card {
  background: var(--beatzz-surface);
  border: 1px solid var(--beatzz-border);
  border-radius: var(--beatzz-radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.beatzz-event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--beatzz-shadow);
}

.beatzz-event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.beatzz-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.beatzz-event-card:hover .beatzz-event-image img {
  transform: scale(1.05);
}

.beatzz-event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.beatzz-event-card:hover .beatzz-event-overlay {
  opacity: 1;
}

.beatzz-event-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: var(--beatzz-gradient);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.beatzz-event-link:hover {
  transform: scale(1.05);
}

.beatzz-event-content {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.beatzz-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--beatzz-gradient);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  min-width: 60px;
  height: fit-content;
}

.beatzz-event-day {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.beatzz-event-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.beatzz-event-info {
  flex: 1;
}

.beatzz-event-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--beatzz-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.beatzz-event-location,
.beatzz-event-time {
  color: var(--beatzz-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.beatzz-event-description {
  color: var(--beatzz-text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.beatzz-event-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* CTA Section */
.beatzz-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.beatzz-cta-description {
  font-size: 1.2rem;
  color: var(--beatzz-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.beatzz-cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Footer */
.beatzz-section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .beatzz-hero-logo {
    height: 80px;
  }
  
  .beatzz-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .beatzz-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .beatzz-hero-stats {
    gap: 2rem;
  }
  
  .beatzz-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .beatzz-events-grid {
    grid-template-columns: 1fr;
  }
  
  .beatzz-event-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .beatzz-event-date {
    align-self: flex-start;
  }
  
  .beatzz-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus indicators */
.beatzz-btn:focus-visible {
  outline: 2px solid var(--beatzz-primary);
  outline-offset: 2px;
}
