*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BRAND TOKENS ── */
:root {
  --gold-start: #FFB703;
  --gold-end: #FF6B35;
  --gold-mid: #FB8500;
  --grad: linear-gradient(135deg, #FFB703, #FB8500, #FF6B35);
}

body {
  font-family: 'Unbounded', sans-serif;
  color: #fff;
  background-color: #000;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

strong, b, h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.page { position: relative; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 60px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  width: 100%;
  text-align: left;
}

/* Full Screen Video BG */
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .hero { 
    align-items: center; 
    text-align: center; 
    padding-top: 130px; 
    padding-left: 5%; 
    padding-right: 5%; 
    min-height: 100vh;
  }
  .hero-content { 
    text-align: center; 
    margin: 0 auto; 
    width: 100%;
  }
  .main-title {
    font-size: clamp(3.5rem, 15vw, 5.5rem) !important;
    line-height: 0.85;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(251, 133, 0, 0.4);
  }
  .hero-media { 
    width: 100%; 
    opacity: 0.28; 
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, transparent 100%);
  }
  .hero-video {
    object-position: center top;
  }
  .hero-details { 
    justify-content: center; 
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 32px auto;
    gap: 12px;
  }
  .detail-pill {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(251, 133, 0, 0.3);
    padding: 14px 20px;
  }
  .hero-cta {
    margin: 10px auto 0;
    width: 100%;
    max-width: 300px;
    transform: scale(1.1);
  }
}

/* Title shimmer orange */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFB703 0%, #FB8500 40%, #FF6B35 70%, #FFB703 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s linear infinite;
  filter: drop-shadow(0 10px 30px rgba(251,133,0,0.3));
}

.hero-sub {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-details {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.detail-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 40px;
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.detail-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255,183,3,0.5);
  box-shadow: 0 0 12px rgba(255,183,3,0.2);
}

.detail-pill .icon svg {
  width: 14px;
  height: 14px;
  stroke: #00818F;
  stroke-width: 2.5;
}

/* ── ANIMATIONS / REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* CTA pulse */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 28px rgba(251,133,0,0.5); }
  50%       { box-shadow: 0 0 70px rgba(255,183,3,0.9), 0 0 130px rgba(251,133,0,0.35); }
}
.hero-cta {
  margin-top: 32px;
  display: inline-block;
  padding: 14px 42px;
  background: var(--grad);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(251,133,0,0.35);
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 183, 3, 0.75);
  animation: none;
}
@media (max-width: 600px) {
  .hero-cta { padding: 14px 32px; font-size: 1rem; margin-top: 24px; }
}

/* ── DESCRIPTION ── */
.description {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 28px;
  text-align: center;
}
@media (max-width: 600px) {
  .description { padding: 40px 16px; }
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  animation: labelGlow 3s ease-in-out infinite;
}
@keyframes labelGlow {
  0%, 100% { filter: none; }
  50%       { filter: drop-shadow(0 0 7px rgba(255,183,3,0.55)); }
}

.description h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  color: #fff;
}

.description p { font-size: 1.05rem; line-height: 1.85; color: #aaa; }

.hero-statement {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 32px 0;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(251, 133, 0, 0.25));
}

/* ── TICKER (LETRREIRO) ── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 80px 0;
  border-top: 1px solid rgba(251, 133, 0, 0.1);
  border-bottom: 1px solid rgba(251, 133, 0, 0.1);
  display: flex;
  position: relative;
}

.ticker-aura {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../media/images/aura-bg.png") center/cover no-repeat;
  opacity: 0.35;
  z-index: 1;
  filter: blur(45px) brightness(1.2);
  animation: aura-liquid 16s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Artist Ghost Background */
.ticker-img-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../media/images/poze-topo.png") center/cover no-repeat;
  opacity: 0.15;
  filter: blur(5px) brightness(1.1);
  pointer-events: none;
}

/* Gritty cinematic noise overlay */
.ticker-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes aura-liquid {
  0% { transform: scale(1) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.3) translate(-4%, 3%) rotate(5deg); }
  100% { transform: scale(1.1) translate(3%, -4%) rotate(-3deg); }
}

.ticker {
  display: flex;
  white-space: nowrap;
  gap: 120px;
  animation: ticker-slide 110s linear infinite;
  will-change: transform;
  position: relative;
  z-index: 3;
}

.ticker-item {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(8rem, 25vw, 18rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  -webkit-text-fill-color: #000;
  letter-spacing: -0.05em;
  line-height: 0.8;
  padding: 40px 0;
}

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .ticker-wrap { padding: 30px 0; }
  .ticker { animation-duration: 60s; gap: 60px; }
  .ticker-item { font-size: clamp(6rem, 20vw, 10rem); line-height: 0.9; }
}

.event-brief {
  margin-top: 24px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .hero-statement { margin: 20px 0; }
  .event-brief { font-size: 0.9rem; }
}
.description p strong { color: #fff; }

/* ── DIVIDER ── */
@keyframes dividerScan {
  0%   { background-position: -100% 0; opacity: 0.25; }
  50%  { opacity: 0.65; }
  100% { background-position: 250% 0; opacity: 0.25; }
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFB703, #FF6B35, #FFB703, transparent);
  background-size: 200% 100%;
  animation: dividerScan 3.5s ease-in-out infinite;
}

/* ── TICKETS ── */
.tickets-section {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.tickets-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../media/images/poze-topo.png") center/cover no-repeat;
  opacity: 0.15;
  filter: none;
  pointer-events: none;
}

@media (max-width: 600px) {
  .tickets-section { padding: 40px 16px; }
}

.tickets-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent, #000 90%);
  z-index: 1;
  pointer-events: none;
}

.tickets-section h2 {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tickets-section .section-label,
.tickets-section p { position: relative; z-index: 2; }

/* ── BENTO CARDS ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

@keyframes bentoBreathe {
  0%, 100% { border-color: rgba(255, 183, 3, 0.15); }
  50%       { border-color: rgba(255, 183, 3, 0.45); box-shadow: 0 8px 32px rgba(0,0,0,0.37), 0 0 22px rgba(255,183,3,0.07); }
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  animation: bentoBreathe 3s ease-in-out infinite;
}
.bento-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 133, 0, 0.6) !important;
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(251, 133, 0, 0.15);
  animation: none !important;
}
.bento-card * { text-decoration: none !important; }

@media (min-width: 992px) {
  .bento-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 40px 48px;
    gap: 60px;
    min-height: 240px;
  }
  .bento-info {
    flex: 1.5;
    width: auto;
    text-align: left;
    align-self: flex-start;
  }
  .bento-card .status {
    justify-content: flex-start;
  }
  .bento-card .price-info {
    flex: 1;
    margin-top: 0;
    background: transparent;
    border: none;
    padding: 0;
    min-height: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 40px;
  }
  .bento-card .inner-links {
    flex: 1.2;
    margin-top: 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: auto;
  }
}
@media (max-width: 991px) {
  .bento-card { min-height: auto; padding: 32px 24px; align-items: flex-start; text-align: left; }
  .bento-card .price-info { border-left: none; padding-left: 0; margin-top: 20px; width: 100%; text-align: left; }
  .bento-card .inner-links { align-items: flex-start; margin-top: 24px; width: 100%; }
  .bento-btn { max-width: 100%; }
}

@media (max-width: 600px) {
  .bento-card { padding: 32px 20px; gap: 20px; }
}
@media (max-width: 991px) {
  .bento-info { width: 100%; }
}

.bento-card .status {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00e5ff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-weight: 700;
  background: rgba(0, 229, 255, 0.05);
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid rgba(0, 229, 255, 0.1);
}
.bento-card .status::before {
  content: '';
  width: 8px; height: 8px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e5ff;
  flex-shrink: 0;
  animation: dotPulse 1.5s infinite;
}
@keyframes dotPulse {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #00e5ff; }
  50% { transform: scale(1.6); opacity: 0.5; box-shadow: 0 0 20px #00e5ff; }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #00e5ff; }
}

.bento-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 8vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--gold-mid);
  text-transform: uppercase;
  line-height: 1;
}
.bento-card p.action-text { 
  font-size: 0.85rem; 
  color: #888; 
  margin: 8px 0 24px; 
  line-height: 1.5; 
  max-width: 280px;
}

.bento-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  width: 100%;
  transition: background 0.3s, border-color 0.3s;
}

.bento-card .price-row:last-of-type { margin-bottom: 0; }

.bento-card .price-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .bento-card .price-row {
    padding: 12px 18px;
    margin-bottom: 10px;
  }
}

.bento-card .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.bento-card .value {
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.bento-card .value span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: #00e5ff;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.bento-card .inner-links {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bento-card .link-map {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 0.7rem;
  color: #888;
  text-decoration: underline !important;
  transition: color 0.2s;
  z-index: 3;
}
.bento-card .link-map:hover { color: var(--gold-mid); }

.bento-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--grad);
  border-radius: 50px;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bento-btn:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(251, 133, 0, 0.45); }
@media (max-width: 600px) {
  .bento-btn { font-size: 0.85rem; padding: 14px 20px; }
}

/* ── INFO SECTION ── */
.info-section {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 600px) {
  .info-section { padding: 40px 16px; }
}

.rating-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 183, 3, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  color: #FFB703;
  margin: 0 auto 16px;
}

.location-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.address-text { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: #aaa; }
.maps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: rgba(255,183,3,0.08);
  border: 1px solid rgba(255,183,3,0.3);
  border-radius: 50px;
  color: #FFB703;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.maps-btn:hover { background: rgba(255,183,3,0.18); transform: translateY(-2px); }
.maps-btn svg { fill: #FFB703; }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.rule-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.2s;
}
.rule-item:hover { border-color: rgba(255,183,3,0.3); }
.rule-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 900;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; color: #fff;
}
.rule-item h4 svg { 
  width: 24px; height: 24px; 
  stroke: #00818F; 
  transition: filter 0.3s, stroke 0.3s; 
}
.rule-item:hover h4 svg {
  filter: drop-shadow(0 0 10px rgba(0, 129, 143, 0.8));
  stroke: #00818F;
}
.rule-item p { font-size: 0.78rem; color: #666; line-height: 1.6; }

/* ── NAV PILL ── */
.bn-nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999; pointer-events: none;
}
.bn-nav-fixed {
  max-width: 1000px; margin: 24px auto 0;
  pointer-events: auto;
  padding: 0 5%;
}
.bn-pill {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 992px) {
  .bn-pill { padding: 8px 24px; }
}
.bn-logo img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  display: block;
}
.bn-desktop-nav { display: none; align-items: center; gap: 32px; flex: 1; justify-content: center; }
@media (min-width: 992px) { .bn-desktop-nav { display: flex; } }
.bn-d-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.bn-d-link:hover { color: #FFB703; }
.bn-d-cta {
  padding: 10px 24px;
  background: var(--grad);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #000; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-left: auto;
}
.bn-d-cta:hover { transform: scale(1.06); box-shadow: 0 0 20px rgba(255,183,3,0.5); }

/* hamburger */
.bn-hamburger {
  display: flex;
  flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
@media (min-width: 992px) { .bn-hamburger { display: none; } }
.bn-hamburger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px; transition: 0.3s;
}

.bn-pill.bn-open .bn-logo,
.bn-pill.bn-open .bn-hamburger {
  display: none !important;
}

/* mobile menu */
.bn-mobile-menu {
  display: none; 
  flex-direction: column; 
  gap: 12px;
  padding: 24px 20px 16px;
  background: radial-gradient(circle at top right, rgba(251, 133, 0, 0.08), transparent 70%);
  width: 100%;
  flex: 1;
}
.bn-mobile-menu.bn-visible { display: flex; }

/* Hide logo/hamburger when menu open */
.bn-pill.bn-open .bn-logo,
.bn-pill.bn-open .bn-hamburger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bn-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: transform 0.2s, background 0.2s;
}
.bn-close-btn:active { transform: scale(0.9); background: rgba(255, 255, 255, 0.15); }

.bn-close-btn::before,
.bn-close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
}
.bn-close-btn::before { transform: translate(-50%, -50%) rotate(45deg); }
.bn-close-btn::after { transform: translate(-50%, -50%) rotate(-45deg); }

.bn-pill.bn-open { border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

.bn-m-section {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem; 
  color: #fff;
  opacity: 0.3;
  text-transform: uppercase; 
  letter-spacing: 0.25em;
  padding: 0 8px 16px; 
  display: block;
  text-align: center;
}

.bn-m-link {
  display: flex; 
  align-items: center; 
  gap: 16px;
  padding: 16px 20px; 
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; 
  font-weight: 700;
  color: rgba(255,255,255,0.9); 
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(15px);
  width: 100%;
}

.bn-visible .bn-m-link {
  animation: mEntry 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bn-m-link:nth-child(2) { animation-delay: 0.05s; } /* Close btn is 1, Section is 2 */
.bn-m-link:nth-child(3) { animation-delay: 0.1s; }
.bn-m-link:nth-child(4) { animation-delay: 0.15s; }
.bn-m-link:nth-child(5) { animation-delay: 0.2s; }
.bn-m-link:nth-child(6) { animation-delay: 0.25s; } /* CTA */

@keyframes mEntry {
  to { opacity: 1; transform: translateY(0); }
}

.bn-m-link svg {
  width: 18px; height: 18px;
  fill: none; 
  stroke: #ffb703;
  stroke-width: 2.2; 
  stroke-linecap: round; 
  stroke-linejoin: round;
  transition: transform 0.3s;
}
.bn-m-link:hover, .bn-m-link:active { 
  background: rgba(255,255,255,0.08); 
  border-color: rgba(255,183,3,0.3);
  color: #fff; 
}
.bn-m-link:active { transform: scale(0.98); }
.bn-m-link:hover svg { transform: translateX(3px); }

.bn-m-cta {
  display: block; 
  margin: 8px 0 4px;
  padding: 22px 14px; 
  text-align: center;
  background: var(--grad);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; 
  font-weight: 900;
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  color: #000; 
  text-decoration: none;
  width: 100%;
  box-shadow: 0 10px 30px rgba(251,133,0,0.35);
  opacity: 0;
  transform: scale(0.95);
}

.bn-visible .bn-m-cta {
  animation: ctaEntry 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.35s;
}

@keyframes ctaEntry {
  to { opacity: 1; transform: scale(1); }
}

.bn-backdrop {
  display: none; 
  position: fixed; 
  inset: 0; 
  z-index: 998;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bn-backdrop.bn-open { display: block; }
@media (min-width: 992px) {
  .bn-pill { border-radius: 50px !important; overflow: visible; padding: 8px 10px; }
}

/* ── FOOTER ── */
footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.social-row { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-btn svg {
  width: 24px; height: 24px;
}
.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(251,133,0,0.3);
  background: rgba(255,183,3,0.1);
  border-color: rgba(255,183,3,0.4);
}
.social-btn:hover svg { fill: #FFB703; }
.mds-credit {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; text-decoration: none;
  opacity: 0.5; transition: opacity 0.2s;
}
.mds-credit:hover { opacity: 1; }
.mds-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: #aaa;
}
.legal {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6rem; color: #333;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 16px; line-height: 1.8;
}

@keyframes btpFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,183,3,0.1);
  border: 1px solid rgba(255,183,3,0.3);
  cursor: pointer; margin-top: 24px;
  color: #FFB703;
  transition: background 0.2s, transform 0.2s;
  animation: btpFloat 2s ease-in-out infinite;
}
.back-to-top:hover { background: rgba(255,183,3,0.25); transform: translateY(-4px); animation: none; }
.back-to-top svg { width: 20px; height: 20px; }
