:root {
  --primary: #ffcc00;
  --gold: #d4af37;
  --gold-soft: #f0d27d;
  --secondary: #d10000;
  --dark: #0f0f12;
  --light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 138px;
  background: #000;
}

a {
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.text-gold {
  color: var(--gold) !important;
}

/* Navbar */
.navbar-main {
  background: transparent !important;
  box-shadow: none;
  padding: 0;
  min-height: 132px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-logo {
  grid-column: 1;
  grid-row: 1;
  padding: 14px 0 10px;
}

.site-logo{
  display: block;
  width: auto;
  height: auto;
  max-height: 96px;
  max-width: 320px;
  object-fit: contain;
}

.navbar-main.navbar-scrolled {
  background: rgba(0, 0, 0, 0.20) !important;
  box-shadow: none;
}

.navbar-grid {
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  align-items: center;
}



.brand-text {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  padding: 0.35rem 0;
}

.brand-title,
.brand-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-top: 0.2rem;
}

.navbar-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  padding: 10px 0;
}

.navbar-menu {
  grid-column: 1 / span 2;
  grid-row: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 0;
}

.navbar-social {
  gap: 0.25rem;
}

.social-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.75);
  color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-size: 1.05rem;
}

.social-mini:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #111 !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.social-mini-text {
  width: auto;
  min-width: 52px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: default;
}

.social-email {
  color: #fff !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.social-email:hover {
  color: var(--gold) !important;
}

.navbar-phone a {
  color: #fff !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.navbar-phone a:hover {
  color: var(--gold) !important;
}

.navbar-dark .navbar-toggler {
  border-color: rgba(212, 175, 55, 0.55);
}

.navbar-dark .navbar-toggler-icon {
  filter: brightness(1.2);
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  width: 78%;
}

/* Hero */
.hero {
  min-height: 100vh;
  margin-top: -138px;
  padding-top: 138px;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  top: -138px;
  height: calc(100% + 138px);
  z-index: 0;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease-in-out, transform 8s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 540px at 50% -200px, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  max-width: 980px;
}

.hero h1 {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-lead,
.hero-sublead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

.hero-lead {
  font-size: 1.35rem;
  margin-top: 1rem;
}

.hero-sublead {
  font-size: 1.08rem;
  margin-top: 0.9rem;
}

.hero-bottom-button {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: 3;
}

.btn-xl-ticket {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #000 !important;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.2rem 2.7rem;
  border: none;
  border-radius: 999px;
  min-width: 290px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.btn-xl-ticket:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #ffd633, #ffad33);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

/* Sections */
.section {
  position: relative;
  padding: 84px 0;
}

.section-glass {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 60px 30px;
}

.section-title {
  position: relative;
  z-index: 1;
}

.title-underline {
  display: inline-block;
  position: relative;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.title-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 120px;
  height: 4px;
  border-radius: 2px;
  background: var(--primary);
}

/* Backgrounds */
.bg-stripes-v {
  --stripe: 60px;
  background: repeating-linear-gradient(
    90deg,
    #d10000 0 calc(var(--stripe)),
    #ffffff calc(var(--stripe)) calc(var(--stripe) * 2)
  );
  background-attachment: fixed;
}

.bg-stripes-v.narrow {
  --stripe: 40px;
}

.bg-conic-circus {
  background:
    repeating-conic-gradient(
      from -10deg,
      rgba(209, 0, 0, 0.13) 0 15deg,
      rgba(255, 255, 255, 0.13) 15deg 30deg
    );
  background-color: #fff;
  background-attachment: fixed;
}

.section-dark {
  color: var(--light);
  background: radial-gradient(1200px 500px at 50% -200px, rgba(255, 255, 255, 0.06), rgba(15, 15, 18, 0)), #0b0b10;
  overflow: hidden;
}

.section-dark .title-underline {
  color: #ffd966;
}

.section-dark .title-underline::after {
  background: #ffd966;
}

.bg-dark-veil {
  background: rgba(0, 0, 0, 0.5);
}

/* Cards */
.show-card,
.feature,
.contact-card,
.rules-card {
  border-radius: 18px;
  overflow: hidden;
}

.show-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
}

.show-image-full {
  height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-image-full img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.show-card:hover .show-image-full img {
  transform: scale(1.03);
}

.show-content-minimal {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
}

.btn-gold {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #000 !important;
  font-weight: 800;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffd633, #ffad33);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.feature {
  background: rgba(255, 255, 255, 0.96);
  padding: 30px 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.feature h3 {
  color: #b10000;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 0.98rem;
  line-height: 1.7;
}

.feature-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-link {
  color: #b10000;
  font-weight: 700;
  text-decoration: none;
}

.feature-link:hover {
  color: #7f0000;
  text-decoration: underline;
}

/* About */
.about-image {
  object-fit: cover;
  min-height: 100%;
}

.rules-card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.rules-list {
  list-style: none;
  counter-reset: rule;
}

.rules-list li {
  counter-increment: rule;
  position: relative;
  padding-left: 64px;
  margin-bottom: 1rem;
  color: #e9ecef;
  font-size: 1.02rem;
  line-height: 1.58;
}

.rules-list li:last-child {
  margin-bottom: 0;
}

.rules-list li::before {
  content: counter(rule) '.';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #d4af37);
  color: #111;
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

/* Gallery */
.gallery-item {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-modal .modal-content {
  background-color: rgba(0, 0, 0, 0.95) !important;
  border: none;
}

.gallery-modal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-modal .modal-footer {
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.gallery-modal .btn-close {
  filter: invert(1);
  opacity: 0.9;
}

.gallery-modal .btn-close:hover {
  opacity: 1;
}

.gallery-modal .modal-dialog {
  transform: scale(0.97);
  transition: transform 0.3s ease-out;
}

.gallery-modal.show .modal-dialog {
  transform: scale(1);
}

#imageCounter {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact & footer */
.contact-card {
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  min-width: 20px;
}

#contact a.link-light:hover {
  text-decoration: underline;
}

.footer-social {
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link i {
  font-size: 1.25rem;
  line-height: 1;
}

.social-link:hover,
.social-link:active {
  background-color: var(--gold);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.social-link:focus-visible {
  outline: 2px dashed var(--gold);
  outline-offset: 3px;
}

.social-link-text {
  width: auto;
  min-width: 72px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: default;
}

/* Stars */
.stars-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  animation: twinkle linear infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* Appear animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}


/* === 2026-04-05 targeted fixes === */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.hero-title{
  font-size: clamp(3.6rem, 6.6vw, 6.4rem) !important;
  line-height: 1.03;
  letter-spacing: .01em;
  text-shadow: 0 4px 24px rgba(0,0,0,.38);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead{
  max-width: 920px;
  margin: 1.35rem auto 0;
  font-size: clamp(1.28rem, 2.25vw, 1.82rem) !important;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0,0,0,.36);
}

.hero-sublead{
  display:none !important;
}

.hero-bottom-button{
  bottom: -58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(100%, 560px);
}

.btn-xl-ticket{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 340px;
  min-height: 92px;
  font-size: 1.75rem !important;
  font-weight: 900;
  padding: 1.55rem 3rem !important;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 18px 42px rgba(0,0,0,.42);
}

.btn-xl-ticket:hover{
  transform: translateY(-5px) scale(1.035);
}

#afisha{
  position: relative;
  z-index: 1;
  padding-top: 128px !important;
}

.hero{
  overflow: visible !important;
  isolation: auto !important;
  z-index: 5;
}

.hero-vignette{
  z-index: 1;
}

.navbar-social .social-mini{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 700;
  transition: color .25s ease, transform .25s ease;
}

.navbar-social .social-mini:hover,
.navbar-social .social-mini:focus{
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.navbar-social .social-max{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 1rem;
  letter-spacing: .06em;
}

.rules-card-collapsible{
  overflow: visible;
}

.rules-header{
  text-align: left;
}

.rules-subtitle{
  color: #ffd966;
  font-size: 1.5rem;
  font-weight: 800;
}

.rules-note{
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.55;
}

.rules-list-wrap{
  position: relative;
  overflow: hidden;
  transition: max-height .35s ease;
}

.rules-list-collapsible .rule-extra{
  display: none;
}

.rules-card.expanded .rules-list-collapsible .rule-extra{
  display: block;
}

.rules-list li{
  font-size: 1.04rem;
  line-height: 1.62;
  padding-left: 68px;
}

.rules-list li::before{
  top: .1rem;
}

.rules-fade{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(11,11,16,0), rgba(11,11,16,.92));
  pointer-events: none;
}

.rules-card.expanded .rules-fade{
  display: none;
}

.btn-rules-toggle{
  min-width: 260px;
  padding: .95rem 1.8rem;
  font-size: 1rem;
  font-weight: 800;
}

.social-link-text{
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 0 18px;
  min-width: 82px;
  width: auto;
  text-decoration: none;
}


/* === 2026-04-05 navbar + confetti fixes === */
.navbar-social{
  gap: .8rem;
}

.navbar-social .social-mini,
.navbar-social .social-max{
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 1 !important;
}

.navbar-social .social-mini i{
  display: inline-block;
  line-height: 1;
}

.navbar-social .social-mini:hover,
.navbar-social .social-mini:focus,
.navbar-social .social-max:hover,
.navbar-social .social-max:focus{
  background: transparent !important;
  box-shadow: none !important;
}

.btn-xl-ticket{
  font-size: 1.42rem !important;
  padding: 1.38rem 3.2rem !important;
  min-width: 360px !important;
  min-height: 84px;
  box-shadow: 0 16px 42px rgba(0,0,0,.42);
}

.btn-xl-ticket i{
  font-size: 1.15em;
}

.buy-ticket-trigger{
  position: relative;
  overflow: visible;
}

.ticket-confetti-layer{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3000;
}

.ticket-confetti{
  position: fixed;
  width: 12px;
  height: 18px;
  left: 0;
  top: 0;
  opacity: 0;
  border-radius: 3px;
  will-change: transform, opacity;
  animation: ticketConfettiBurst 900ms ease-out forwards;
}

.ticket-confetti.shape-circle{
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ticket-confetti.shape-line{
  width: 6px;
  height: 20px;
  border-radius: 999px;
}

@keyframes ticketConfettiBurst{
  0%{
    opacity: 1;
    transform: translate3d(var(--x, 0), var(--y, 0), 0) rotate(0deg) scale(1);
  }
  100%{
    opacity: 0;
    transform: translate3d(calc(var(--x, 0) + var(--dx, 0px)), calc(var(--y, 0) + var(--dy, 0px)), 0) rotate(var(--rot, 360deg)) scale(.75);
  }
}
.navbar-brand-logo{
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-decoration: none;
}

