/* styles.css */
@font-face {
  font-family: 'Headliner No. 45';
  src: url('./assets/fonts/HeadlinerNo45.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Color Palette */
  --color-bg: #0b0c10;
  --color-surface: rgba(31, 40, 51, 0.7);
  --color-surface-hover: rgba(31, 40, 51, 0.9);
  --color-text: #c5c6c7;
  --color-text-light: #ffffff;
  --color-neon-primary: #ffaa00;
  /* Warm amber/beer neon */
  --color-neon-primary-glow: rgba(255, 170, 0, 0.4);
  --color-neon-secondary: #ff8800;
  /* Deep orange contrast */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #128c7e;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --section-padding: 5rem 0;
  --transition-standard: all 0.3s ease;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
.headline {
  font-family: 'Headliner No. 45', sans-serif;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: normal;
}

h2,
.section-title {
  font-family: 'Headliner No. 45', sans-serif;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: normal;
}

h3 {
  font-family: 'Headliner No. 45', var(--font-heading);
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: normal;
}

h4 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-standard);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Utilities */
.neon-text {
  color: var(--color-neon-primary);
  text-shadow: 0 0 10px var(--color-neon-primary-glow);
}

.neon-text-alt {
  color: var(--color-neon-secondary);
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.4);
}

.glass-panel {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-neon-primary);
  color: #111;
}

.btn-primary:hover {
  background: #ffb733;
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: 0 0 15px var(--color-neon-primary-glow);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

.btn-whatsapp.btn-glow {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-outline-neon {
  background: transparent;
  border: 2px solid var(--color-neon-primary);
  color: var(--color-neon-primary);
}

.btn-outline-neon:hover {
  background: var(--color-neon-primary);
  color: #111;
  box-shadow: 0 0 15px var(--color-neon-primary-glow);
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  /* Increased top spacing */
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 85px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  /* Space for header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(11, 12, 16, 1) 100%);
}

.hero-content {
  max-width: 800px;
}

.headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.sub-headline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 3rem;
  color: var(--color-text);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.secondary-info {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Common Section */
section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.separator {
  height: 4px;
  width: 60px;
  background: var(--color-neon-primary);
  border-radius: 2px;
}

.separator.mx-auto {
  margin-top: 1rem;
}

/* The Experience */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-image {
  padding: 0;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.experience-image:hover img {
  transform: scale(1.05);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-neon-primary);
  background: rgba(255, 170, 0, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* Menu Highlights */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 170, 0, 0.15);
  border-color: rgba(255, 170, 0, 0.3);
}

.menu-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.2);
  /* Zoom in to crop out the baked-in white borders from the images */
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-wrapper img {
  transform: scale(1.3);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  /* For placeholders we use a nice gradient */
}

.menu-bg-2 {
  background: linear-gradient(135deg, #1f2833, #0b0c10);
}

.menu-bg-3 {
  background: linear-gradient(135deg, #3a2500, #1a1a1a);
}

.tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-neon-primary);
  color: #111;
  font-family: var(--font-heading);
  font-weight: bold;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 2;
}

.menu-card-content {
  padding: 2rem;
  flex-grow: 1;
}

.menu-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.highlight-quote {
  color: var(--color-neon-primary);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Reviews / Wall of Fame */
.social-proof {
  background: linear-gradient(to right, rgba(11, 12, 16, 1), rgba(31, 40, 51, 0.3), rgba(11, 12, 16, 1));
}

.review-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.review-slider {
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.review-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.stars {
  color: var(--color-neon-primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.review-text {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-guide {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 10px;
  font-style: normal;
  text-transform: none;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.control-btn {
  background: transparent;
  border: 1px solid var(--color-text-muted);
  color: var(--color-text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-standard);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: var(--color-neon-primary);
  border-color: var(--color-neon-primary);
  color: #111;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-standard);
}

.dot.active {
  background: var(--color-neon-primary);
  box-shadow: 0 0 10px var(--color-neon-primary-glow);
}

/* Footer & Location */
.footer {
  background-color: #050505;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-neon-primary);
}

.footer-logo {
  max-height: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.brand-desc {
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--color-neon-primary);
  color: #111;
  transform: translateY(-3px);
}

.phone-link {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  color: var(--color-text-light);
}

.phone-link:hover {
  color: var(--color-neon-primary);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.highlight-day td {
  color: var(--color-text-light);
  font-weight: 600;
}

.map-wrapper {
  height: 250px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.address-text {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Sticky WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-whatsapp);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition-standard);
}

.whatsapp-float:hover {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.1);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 80px;
  background: var(--color-surface);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .d-none-mobile {
    display: none !important;
  }

  .header-container {
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .hero-actions {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .hero-actions>div {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .review-slide {
    padding: 2rem 1rem;
  }
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
}

.slide-in-right.visible {
  animation: slideInRight 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
}

.slide-in-left.visible {
  animation: slideInLeft 0.8s forwards;
}

/* Our Story Section */
.our-story {
  background-color: #07080a;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.rounded-img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

/* Menu Tabs */
.menu-tabs-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-standard);
}

.tab-btn i {
  margin-right: 8px;
}

.tab-btn:hover {
  background: rgba(255, 170, 0, 0.1);
  color: var(--color-text-light);
}

.tab-btn.active {
  background: var(--color-neon-primary);
  color: #111;
  border-color: var(--color-neon-primary);
  box-shadow: 0 0 15px var(--color-neon-primary-glow);
}

/* Menu Carousel Container Layout */
.menu-carousel-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.menu-carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.menu-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-carousel-slide {
  flex: 0 0 100%;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  /* Ensure the inner card stretches */
}

@media (min-width: 768px) {
  .menu-carousel-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .menu-carousel-slide {
    flex: 0 0 33.333%;
  }
}

.menu-card {
  flex: 1;
  /* Force equal height for all sibling cards */
  display: flex;
  flex-direction: column;
}

.menu-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--color-surface);
  border: 1px solid var(--color-neon-primary);
  border-radius: 50%;
  color: var(--color-neon-primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-standard);
}

.menu-arrow:hover {
  background: var(--color-neon-primary);
  color: #111;
  box-shadow: 0 0 15px var(--color-neon-primary-glow);
}

.menu-arrow.left-arrow {
  left: -25px;
}

.menu-arrow.right-arrow {
  right: -25px;
}

@media (max-width: 768px) {
  .menu-arrow.left-arrow {
    left: 0px;
  }

  .menu-arrow.right-arrow {
    right: 0px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Interactive Hover Effects */
.interactive-hover {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.interactive-hover:hover {
  transform: scale(1.05);
}

.interactive-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
}

.interactive-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(255, 170, 0, 0.2);
  border-color: rgba(255, 170, 0, 0.5);
}

.hover-scale {
  transition: transform 0.4s ease;
}

.hover-scale:hover {
  transform: scale(1.08);
}

.hover-scale-img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interactive-card:hover .hover-scale-img {
  transform: scale(1.1);
}

.interactive-hover:hover .hover-scale-img {
  transform: scale(1.1);
}

.interactive-row {
  transition: background-color 0.3s ease, padding-left 0.3s ease;
  cursor: default;
}

.interactive-row:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* New Sections */
/* Promotions */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-card {
  border-top: 4px solid var(--color-neon-secondary);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.promo-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(255, 136, 0, 0.2);
}

.promo-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Events */
.events-banner {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-neon-primary);
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.1);
  border-radius: 12px;
}

.events-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.events-content {
  position: relative;
  z-index: 1;
}

.events-content p {
  color: var(--color-text-light);
}

.event-date {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Gallery */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 250px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.8);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* VIP Club */
.vip-banner {
  background: linear-gradient(to right, #111, #222);
  border: 2px solid var(--color-neon-secondary);
  border-radius: 16px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.vip-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--color-neon-secondary);
  filter: blur(80px);
  opacity: 0.3;
  border-radius: 50%;
}

.vip-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.5);
}