/* CSS Variables for consistent theming - FUNJU Brandbook Colors */
:root {
  /* Brand Colors from Brandbook */
  --korean-sunset-red: #E63946;
  --seoul-night-dark: #1A1A2E;
  --gangnam-green: #16DB93;
  --hanbok-pink: #FF6B9D;
  --busan-blue: #0A3A5C;
  --jeju-peach: #FFB347;

  /* Primary Palette */
  --primary-gradient: linear-gradient(135deg, #E63946 0%, #FF006B 100%);
  --primary-color: #E63946;
  --secondary-color: #1A1A2E;
  --accent-blue: #0A3A5C;
  --accent-green: #16DB93;
  --accent-pink: #FF6B9D;

  /* Text Colors */
  --text-dark: #1A1A2E;
  --text-light: #666;
  --text-lighter: #999;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #e9ecef;
  --bg-dark: #1A1A2E;

  /* UI Elements */
  --border-light: #e0e0e0;
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-neon: 0 0 20px rgba(230, 57, 70, 0.5);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: white;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.3) 0.5px, transparent 0.5px),
    linear-gradient(0deg, rgba(230, 57, 70, 0.3) 0.5px, transparent 0.5px);
  background-size: 40px 40px;
  background-position: 0 0;
  background-color: #1a1a2e;
  overflow-x: hidden;
  position: relative;
}

/* Ensure no text can escape containers */
.event-card,
.event-content,
.events-container,
.events {
  overflow: hidden;
  position: relative;
}

/* Age Gate Modal */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #16db93 2px, transparent 2px);
  background-size: 30px 30px;
  background-color: #1a1a2e;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: rgba(26, 26, 46, 0.95);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(22, 219, 147, 0.3);
  box-shadow: 0 0 30px rgba(22, 219, 147, 0.2), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-gate h2 {
  margin-bottom: 20px;
  color: #16db93;
  font-size: 32px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(22, 219, 147, 0.5);
}

.age-gate p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.age-btn.yes {
  background: linear-gradient(135deg, #16db93 0%, #0fa77a 100%);
  color: #1a1a2e;
  border: 2px solid #16db93;
}

.age-btn.no {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.age-btn.yes:hover {
  background: linear-gradient(135deg, #0fa77a 0%, #0d8f6a 100%);
  box-shadow: 0 8px 30px rgba(22, 219, 147, 0.4);
}

.age-btn.no:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.age-btn:active {
  transform: translateY(-1px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(22, 219, 147, 0.2), transparent) 1;
  box-shadow: 0 0 10px rgba(22, 219, 147, 0.08), 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  border-image: linear-gradient(90deg, rgba(22, 219, 147, 0.3), transparent) 1;
  box-shadow: 0 0 15px rgba(22, 219, 147, 0.12), 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
  font-weight: 800;
  font-size: 28px;
  color: #E63946;
  text-shadow:
    0 0 10px rgba(230, 57, 70, 0.6),
    0 0 20px rgba(230, 57, 70, 0.4);
  transition: var(--transition);
  margin-right: 40px;
}

.logo:hover {
  text-shadow:
    0 0 15px rgba(230, 57, 70, 0.8),
    0 0 30px rgba(230, 57, 70, 0.6);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav a:hover {
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  gap: 5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.lang-switcher span {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.lang-switcher span:hover {
  color: #16DB93;
}

.lang-switcher span.active {
  background: rgba(22, 219, 147, 0.2);
  color: #16DB93;
  box-shadow: 0 0 10px rgba(22, 219, 147, 0.3);
  border: 1px solid rgba(22, 219, 147, 0.4);
}

.cta-buy {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

.cta-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-buy:hover::before {
  left: 100%;
}

.cta-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.8), 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section - Seoul Nightlife Aesthetic */
.hero {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 80px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

/* Seoul Neon Grid Pattern */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.3) 0.5px, transparent 0.5px),
    linear-gradient(0deg, rgba(230, 57, 70, 0.3) 0.5px, transparent 0.5px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px 100px 20px;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.hero-slogan {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: white;
  text-shadow:
    0 0 10px rgba(230, 57, 70, 0.8),
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 30px rgba(230, 57, 70, 0.4),
    3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease, neonPulse 2s ease-in-out infinite alternate;
  letter-spacing: -0.02em;
  line-height: 0.9;
  font-family: 'Montserrat', sans-serif;
}

.hero-slogan-desktop {
  display: none;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 10px rgba(230, 57, 70, 0.8),
      0 0 20px rgba(230, 57, 70, 0.6),
      0 0 30px rgba(230, 57, 70, 0.4),
      3px 3px 6px rgba(0, 0, 0, 0.5);
  }
  to {
    text-shadow:
      0 0 20px rgba(230, 57, 70, 1),
      0 0 30px rgba(230, 57, 70, 0.8),
      0 0 40px rgba(230, 57, 70, 0.6),
      3px 3px 6px rgba(0, 0, 0, 0.5);
  }
}

.hero-video-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 15px rgba(230, 57, 70, 0.7),
    0 0 30px rgba(230, 57, 70, 0.5),
    0 8px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(230, 57, 70, 0.8);
  animation: neonBorderPulse 3s ease-in-out infinite alternate;
}

@keyframes neonBorderPulse {
  from {
    border-color: rgba(230, 57, 70, 0.6);
    box-shadow:
      0 0 15px rgba(230, 57, 70, 0.7),
      0 0 30px rgba(230, 57, 70, 0.5),
      0 8px 30px rgba(0, 0, 0, 0.3);
  }
  to {
    border-color: rgba(230, 57, 70, 1);
    box-shadow:
      0 0 25px rgba(230, 57, 70, 0.9),
      0 0 45px rgba(230, 57, 70, 0.7),
      0 8px 30px rgba(0, 0, 0, 0.3);
  }
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.btn {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.8), 0 8px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Product Section */
.product {
  padding: 100px 0;
  background: #1A1A2E;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.product-container {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px 0 40px;
}

.product-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  background: rgba(22, 219, 147, 0.2);
  border: 2px solid #16DB93;
  color: #16DB93;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(22, 219, 147, 0.4);
  flex-shrink: 0;
  padding: 0;
  padding-bottom: 3px;
  line-height: 0;
  font-family: Arial, sans-serif;
}

.carousel-arrow:hover {
  background: rgba(22, 219, 147, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(22, 219, 147, 0.6);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.product-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  min-height: 400px;
  max-height: 600px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(230, 57, 70, 0.8);
  box-shadow:
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 40px rgba(230, 57, 70, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.3);
  animation: neonBorderPulse 3s ease-in-out infinite alternate;
}

.product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-video.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.product-taste {
  /* Inherits all styles from .features li */
  transition: opacity 0.3s ease;
}

.feature-badge {
  position: absolute;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-medium);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
  border: 2px solid var(--primary-color);
  font-size: 0.95rem;
}

.feature-top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.feature-left {
  left: -10%;
  top: 40%;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.feature-right {
  right: -10%;
  top: 60%;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.bottle-3d {
  width: 200px;
  height: 400px;
  background: var(--primary-gradient);
  border-radius: 15px 15px 50px 50px;
  position: relative;
  animation: floatBottle 4s ease-in-out infinite;
}

.bottle-3d::before {
  content: "FUNJU";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  color: white;
  font-weight: 800;
  font-size: 18px;
}

.product-info {
  justify-self: start;
  max-width: 650px;
  padding-right: 40px;
}

.product-info h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

.product-info .btn {
  display: inline-block;
  margin-top: 20px;
}

.product-description {
  margin-bottom: 40px;
}

.lead-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.features li {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(22, 219, 147, 0.1);
  border: 2px solid #16DB93;
  border-radius: 50px;
  color: #16DB93;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.features li:hover {
  background: rgba(22, 219, 147, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(22, 219, 147, 0.3);
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.highlight-item:hover {
  background: var(--bg-lighter);
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Find Funju Section */
.find-funju {
  padding: 100px 0;
  background: transparent;
}

.find-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.find-container h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

/* Find Grid - Desktop layout */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.form-group {
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Form Card */
.form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(230, 57, 70, 0.6);
  border-right: 5px solid rgba(50, 10, 10, 0.9);
  border-bottom: 5px solid rgba(50, 10, 10, 0.9);
  box-shadow:
    0 0 15px rgba(230, 57, 70, 0.4),
    0 0 30px rgba(230, 57, 70, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateX(0deg);
  transition: var(--transition);
  box-sizing: border-box;
  width: 100%;
}

.form-card:hover {
  transform: perspective(1000px) rotateX(2deg) translateY(-5px);
  border-color: rgba(230, 57, 70, 0.8);
  box-shadow:
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 40px rgba(230, 57, 70, 0.4),
    0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Map Container */
.map-container {
  position: relative;
  min-height: 500px;
  box-sizing: border-box;
  width: 100%;
}

.map-container.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.map-container.disabled::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.3);
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}

#storeMap {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 28px;
  text-align: center;
}

.form-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.form-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

/* My Location Button */
.location-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-gradient);
  color: white;
  padding: 18px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
  z-index: 900;
  display: none;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-btn.visible {
  display: flex;
}

.location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 25px rgba(230, 57, 70, 0.5);
}

.location-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Store Info Panel */
.store-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  border: 2px solid rgba(230, 57, 70, 0.6);
  border-right: 5px solid rgba(50, 10, 10, 0.9);
  border-bottom: 5px solid rgba(50, 10, 10, 0.9);
  box-shadow:
    0 0 15px rgba(230, 57, 70, 0.4),
    0 0 30px rgba(230, 57, 70, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  display: none;
  transform: perspective(1000px) rotateX(0deg);
  transition: var(--transition);
}

.store-panel.visible {
  display: block;
  animation: slideUp 0.5s ease;
}

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

.store-panel h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 20px;
}

.store-info {
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.info-icon {
  margin-right: 10px;
  font-size: 18px;
  min-width: 25px;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-badge.in-stock {
  background: #4CAF50;
  color: white;
}

.status-badge.out-stock {
  background: #f44336;
  color: white;
}

.directions-btn {
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
  padding: 15px;
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

/* Success Message */
.success-message {
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.success-message.visible {
  display: flex;
  animation: slideDown 0.5s ease;
}

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

/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

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

/* Privacy Note */
.privacy-note {
  margin-top: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  border-left: 3px solid var(--primary-color);
}

/* Custom Leaflet Popup */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 5px;
  background: rgba(26, 26, 46, 0.95);
}

.leaflet-popup-content {
  color: #ffffff;
}

.popup-content {
  text-align: center;
  padding: 10px;
}

.popup-content h4 {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
}

.popup-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.popup-distance {
  background: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
  box-shadow:
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 40px rgba(230, 57, 70, 0.4),
    0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Events Section */
.events {
  padding: 100px 0;
  background: #1A1A2E;
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.events h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 2px solid rgba(230, 57, 70, 0.6);
  border-right: 5px solid rgba(50, 10, 10, 0.9);
  border-bottom: 5px solid rgba(50, 10, 10, 0.9);
  overflow: hidden;
  box-shadow:
    0 0 15px rgba(230, 57, 70, 0.4),
    0 0 30px rgba(230, 57, 70, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateX(0deg);
  transition: var(--transition);
}

.event-card:hover {
  transform: perspective(1000px) rotateX(2deg) translateY(-10px);
  border-color: rgba(230, 57, 70, 0.8);
  box-shadow:
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 40px rgba(230, 57, 70, 0.4),
    0 15px 50px rgba(0, 0, 0, 0.4);
}

.event-image {
  height: 200px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.event-image-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 25px;
  background: rgba(26, 26, 46, 0.6);
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.event-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.event-register {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
}

.event-register:hover {
  background: #5a6fd8;
}

/* Video placeholder for events */

/* Moments Section - Masonry Layout */
.moments {
  padding: 100px 0;
  background: transparent;
}

.fans-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.moments h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

.fans-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.fan-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  transition: var(--transition);
}

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

.fan-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.fan-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.fan-info h4 {
  margin-bottom: 5px;
  color: var(--text-dark);
  font-size: 1rem;
}

.fan-info span {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.fan-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.review-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  transition: var(--transition);
}

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

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.review-info h4 {
  margin-bottom: 5px;
  color: var(--text-dark);
  font-size: 1rem;
}

.review-info span {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.review-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Simulate Instagram/TikTok UGC style */
.review-card:nth-child(1) .review-avatar,
.review-card:nth-child(3) .review-avatar,
.review-card:nth-child(5) .review-avatar {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.review-card:nth-child(2) .review-avatar,
.review-card:nth-child(4) .review-avatar,
.review-card:nth-child(6) .review-avatar {
  background: linear-gradient(45deg, #00f2ea 0%, #ff0050 50%, #000000 100%);
}

/* Video placeholder for reviews */
.video-placeholder-review {
  position: relative;
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a3e 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder-review:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.video-placeholder-review .play-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.video-placeholder-review p {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.review-video-card {
  min-height: 350px;
}

.share-moment {
  text-align: center;
}

/* Social Media Cards */
.social-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 2px solid rgba(230, 57, 70, 0.6);
  border-right: 5px solid rgba(50, 10, 10, 0.9);
  border-bottom: 5px solid rgba(50, 10, 10, 0.9);
  padding: 20px;
  box-shadow:
    0 0 15px rgba(230, 57, 70, 0.4),
    0 0 30px rgba(230, 57, 70, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  transform: perspective(1000px) rotateX(0deg);
  transition: var(--transition);
}

.social-card:hover {
  transform: perspective(1000px) rotateX(2deg) translateY(-5px);
  border-color: rgba(230, 57, 70, 0.8);
  box-shadow:
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 40px rgba(230, 57, 70, 0.4),
    0 15px 50px rgba(0, 0, 0, 0.4);
}

.social-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.social-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.instagram-avatar {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.tiktok-avatar {
  background: linear-gradient(45deg, #00f2ea 0%, #ff0050 50%, #000000 100%);
}

.social-info h4 {
  margin-bottom: 5px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.social-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Social Media Placeholder */
.social-media-placeholder {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.instagram-placeholder {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 50%, #dc2743 100%);
}

.tiktok-placeholder {
  background: linear-gradient(135deg, #00f2ea 0%, #ff0050 50%, #000000 100%);
}

.social-media-placeholder:hover {
  transform: scale(1.02);
}

.placeholder-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.social-media-placeholder p {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.view-post-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-post-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Randomize card heights for masonry effect */
.social-card:nth-child(1) .social-media-placeholder {
  min-height: 320px;
}

.social-card:nth-child(2) .social-media-placeholder {
  min-height: 250px;
}

.social-card:nth-child(3) .social-media-placeholder {
  min-height: 380px;
}

.social-card:nth-child(4) .social-media-placeholder {
  min-height: 290px;
}

.social-card:nth-child(5) .social-media-placeholder {
  min-height: 350px;
}

.social-card:nth-child(6) .social-media-placeholder {
  min-height: 270px;
}

/* Instagram Embed Fixes for Masonry */
.social-card .instagram-media,
.social-card .instagram-media iframe {
  max-width: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}

/* TikTok Embed Fixes for Masonry */
.social-card .tiktok-embed,
.social-card .tiktok-embed iframe {
  max-width: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Hide Instagram "View this post" external wrapper */
.social-card blockquote {
  margin: 0 !important;
  padding: 0 !important;
}

/* Force social cards to respect masonry column width */
.social-card,
.social-card * {
  box-sizing: border-box !important;
}

.social-card > * {
  max-width: 100% !important;
}

/* Footer */
.footer {
  background: #1A1A2E;
  color: white;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(230, 57, 70, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--primary-gradient);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
}

.newsletter {
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
}

.newsletter button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 30px;
  text-align: center;
  color: var(--text-lighter);
}

/* Sticky Buy Button for Mobile */
.sticky-buy {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #0A3A5C;
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(22, 219, 147, 0.7),
    0 0 40px rgba(22, 219, 147, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid #16DB93;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  transition: var(--transition);
  animation: greenCartPulse 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(22, 219, 147, 0.8));
}

@keyframes greenCartPulse {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(22, 219, 147, 0.7),
      0 0 40px rgba(22, 219, 147, 0.5),
      0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(22, 219, 147, 0.9);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 25px rgba(22, 219, 147, 0.9),
      0 0 50px rgba(22, 219, 147, 0.7),
      0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(22, 219, 147, 1);
    transform: scale(1.05);
  }
}

.sticky-buy:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 30px rgba(22, 219, 147, 1),
    0 0 60px rgba(22, 219, 147, 0.8),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Hero Neon Slogan Image */
.hero-neon-slogan {
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(22, 219, 147, 0.7))
          drop-shadow(0 0 30px rgba(22, 219, 147, 0.5));
  animation: neonImagePulse 4s ease-in-out infinite alternate;
}

@keyframes neonImagePulse {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(22, 219, 147, 0.7))
            drop-shadow(0 0 30px rgba(22, 219, 147, 0.5));
    opacity: 0.95;
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(22, 219, 147, 0.9))
            drop-shadow(0 0 40px rgba(22, 219, 147, 0.7));
    opacity: 1;
  }
}

/* Animations */
@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 floatBottle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

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

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

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

/* Custom Video Player Controls */
.hero-video-container {
  position: relative;
}

.video-unmute-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-unmute-btn:active {
  transform: scale(0.95);
}

.video-replay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(230, 57, 70, 0.95);
  color: white;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 42px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.video-replay-btn:hover {
  background: rgba(230, 57, 70, 1);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.video-replay-btn:active {
  transform: translate(-50%, -50%) scale(0.98);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  max-width: 90%;
  width: 450px;
  animation: slideUp 0.3s ease;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  z-index: 10002;
  animation: slideInRight 0.3s ease;
  max-width: 300px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification.success {
  background: #4caf50;
  color: white;
}

.notification.error {
  background: #f44336;
  color: white;
}

.notification.info {
  background: var(--primary-color);
  color: white;
}

.notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}

/* Loading state */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus states for accessibility */
.form-input:focus,
.btn:focus,
.cta-buy:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Critical fix for text overflow */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.event-card {
  contain: layout style;
  isolation: isolate;
}

.event-content {
  contain: layout style;
  max-width: 100%;
}

.event-content p {
  max-width: 100%;
  hyphens: auto;
}

@media (min-width: 1024px) {
  /* .hero-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; 
  }
  .hero-video {
    max-width: 100%;
    height: auto;
    display: block;
  } */
  .hero-content {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .hero-slogan-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 5.5rem;
    font-weight: 400;
    color: #16DB93;
    text-shadow:
      0 0 5px rgba(22, 219, 147, 0.8),
      0 0 10px rgba(22, 219, 147, 0.6),
      0 0 15px rgba(22, 219, 147, 0.4),
      0 0 25px rgba(22, 219, 147, 0.3),
      0 0 35px rgba(22, 219, 147, 0.2);
    letter-spacing: 0.05em;
    padding-left: 5vw;
    padding-top: 10vh;
    line-height: 1.1;
    gap: 0.1em;
    opacity: 1;
    filter: none;
    font-family: 'Righteous', 'Impact', sans-serif;
    animation: neonGreenPulse 4s ease-in-out infinite alternate;
    transform-style: preserve-3d;
    text-transform: uppercase;
    font-style: normal;
  }
  .hero-slogan-desktop span {
    display: block;
    width: 100%;
  }

  @keyframes neonGreenPulse {
    0%, 100% {
      text-shadow:
        0 0 5px rgba(22, 219, 147, 0.8),
        0 0 10px rgba(22, 219, 147, 0.6),
        0 0 15px rgba(22, 219, 147, 0.4),
        0 0 25px rgba(22, 219, 147, 0.3),
        0 0 35px rgba(22, 219, 147, 0.2);
      filter: brightness(1);
    }
    50% {
      text-shadow:
        0 0 8px rgba(22, 219, 147, 0.9),
        0 0 15px rgba(22, 219, 147, 0.7),
        0 0 20px rgba(22, 219, 147, 0.5),
        0 0 30px rgba(22, 219, 147, 0.4),
        0 0 45px rgba(22, 219, 147, 0.3);
      filter: brightness(1.15);
    }
  }
  .hero-video-container {
    flex: 1;
  }
}

/* Modal and notification elements are now enabled */

/* Store and Share buttons in modals */
.store-btn,
.share-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #16DB93 0%, #0A3A5C 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.store-btn:hover,
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(22, 219, 147, 0.4);
}
