/* ─────────────────────────────────────────
   MAC Brand Guidelines
   Violet  #5D17E1  |  Black  #180F2B
   Lime    #97F21E  |  White  #FFFFFF
   Font: Manrope (ExtraBold 800, Bold 700, Medium 500)
───────────────────────────────────────── */

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

:root {
  --violet:       #5D17E1;
  --violet-deep:  #4a10c4;
  --violet-glow:  rgba(93,23,225,.35);
  --violet-dim:   rgba(93,23,225,.15);
  --black:        #180F2B;
  --black-deep:   #0e0819;
  --black-card:   #1e1340;
  --lime:         #97F21E;
  --lime-dark:    #7ed016;
  --white:        #ffffff;
  --grey-dark:    #504C66;
  --grey-muted:   rgba(255,255,255,.45);
  --grey-faint:   rgba(255,255,255,.1);

  --font: 'Manrope', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .2s ease;
  --shadow-violet: 0 0 40px rgba(93,23,225,.25);
  --shadow-lime:   0 0 20px rgba(151,242,30,.2);
}

a:hover, a:active {opacity:0.8; transition:ease opacity 0.2s;}
.net-article  a {color:rgba(151,242,30,.65)}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-width:440px;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--lime); color: var(--black); border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-dark); border-color: var(--lime-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-lime);
}
.btn-violet {
  background: var(--violet); color: var(--white); border-color: var(--violet);
}
.btn-violet:hover {
  background: var(--violet-deep); border-color: var(--violet-deep);
  transform: translateY(-2px); box-shadow: var(--shadow-violet);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: var(--white); background: var(--grey-faint); }
.btn-outline-lime {
  background: transparent; color: var(--lime);
  border-color: var(--lime); width: 100%; justify-content: center;
}
.btn-outline-lime:hover { background: var(--lime); color: var(--black); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35); width: 100%; justify-content: center;
}
.btn-outline-white:hover { background: var(--grey-faint); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-card-ticket {
  width: 100%; margin-top: 8px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 100px;
  padding: 10px 20px 10px 10px;
  justify-content: flex-start; gap: 14px;
}
.btn-card-ticket:hover { border-color: rgba(255,255,255,.7); }
.btn-circle-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime); color: var(--black);
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(24,15,43,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(93,23,225,.25);
  transition: border-color var(--transition);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.logos { display: flex; align-items: center; gap: 14px; }
.logo-x { color: var(--grey-dark); font-weight: 300; font-size: 18px; line-height: 1; }

/* Логотипы: прозрачный PNG → белый через фильтр */
.logo-img {
  display: block;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.logo-img:hover { opacity: 1; }

/* MAC: соотношение сторон ~2:1, Партнеркин: ~10:1 — выравниваем визуально */
.logo-img--mac { height: 30px; }
.logo-img--pk  { height: 17px; transform: translateY(-2px); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--white); font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; transition: color var(--transition);
}
.nav a:hover { color: var(--lime); }
.nav .nav-cta {
  background: var(--lime); color: var(--black);
  padding: 8px 18px; border-radius: 8px;
}
.nav .nav-cta:hover { background: var(--lime-dark); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
}
.mobile-nav {
  display: none; flex-direction: column;
  padding: 12px 24px 20px; gap: 4px;
  border-top: 1px solid rgba(93,23,225,.2);
}
.mobile-nav a {
  color: rgba(255,255,255,.8); font-size: 15px; font-weight: 600;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav .nav-cta {
  background: var(--lime); color: var(--black);
  border-radius: 8px; padding: 12px 16px;
  text-align: center; margin-top: 8px; border: none;
}
.mobile-nav.open { display: flex; }

/* ── Language switcher ── */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-left: 16px; flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.45);
  font-family: var(--font); font-size: 12px; font-weight: 700;
  padding: 4px 9px; border-radius: 6px;
  cursor: pointer; transition: all .2s; letter-spacing: .05em;
}
.lang-btn.active {
  border-color: var(--lime); color: var(--lime);
}
.lang-btn:hover:not(.active) {
  border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.8);
}
.mobile-nav .lang-switch {
  margin-left: 0; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-nav .lang-btn {
  font-size: 13px; padding: 6px 16px;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--violet) 0%, var(--black) 55%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 50%, rgba(151,242,30,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(93,23,225,.4) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 36px 36px;
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: 100px; padding-bottom: 80px;
  width: 100%;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; align-items: start;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; justify-content: flex-end; align-self: end; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(151,242,30,.1);
  color: var(--lime);
  border: 1px solid rgba(151,242,30,.35);
  border-radius: 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 16px; margin-bottom: 20px; align-self: flex-start;
  box-shadow: 0 0 14px rgba(151,242,30,.12);
}

.hero-title {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800; line-height: .95;
  color: var(--white); margin-bottom: 12px;
  letter-spacing: .05em;
}
.hero-title .accent { color: var(--white); }

.hero-conf {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  background: linear-gradient(to right, #ffffff 0%, #8b7fd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  letter-spacing: .04em;
  margin-bottom: 24px;
  margin-top: -8px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-sub-link {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color var(--transition), border-color var(--transition);
}
.hero-sub-link:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}
.hero-desc {
  font-size: 16px; font-weight: 400;
  color: var(--white); line-height: 1.4;
  max-width: 540px; margin-bottom: 36px;
}
.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(151,242,30,.4) 0%, rgba(93,23,225,.3) 50%, transparent 100%);
  margin-bottom: 32px;
}
.hero-stats { display: flex; align-items: center; }
.stat { display: flex; flex-direction: column; padding-right: 32px; }
.stat-num {
  font-size: 52px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 600; color: var(--grey-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); margin-right: 32px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(93,23,225,.5);
  backdrop-filter: blur(24px);
  border-radius: 20px; padding: 28px;
  width: 100%; display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-violet);
}
.hero-card-header { display: flex; gap: 6px; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.hero-card-dates {
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 800;
  line-height: 1; letter-spacing: .02em;
  background: linear-gradient(to right, #ffffff, #8b7fd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}
.hero-card-dot:first-child { background: #ff5f57; }
.hero-card-dot:nth-child(2) { background: #febc2e; }
.hero-card-dot:nth-child(3) { background: var(--lime); }
.hero-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px;
}
.hero-card-val { font-size: 15px; font-weight: 700; color: var(--white); }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag {
  background: var(--violet-dim); border: 1px solid rgba(93,23,225,.5);
  color: rgba(255,255,255,.85); font-size: 11px; font-weight: 700;
  border-radius: 100px; padding: 4px 12px;
  letter-spacing: .02em;
  transition: background var(--transition), border-color var(--transition);
}
.hero-tag:hover {
  background: rgba(93,23,225,.3); border-color: rgba(93,23,225,.7);
}

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; color: rgba(255,255,255,.3);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,.6); }
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(4px); }
}

/* ── Sections ── */
.section {
  padding: 72px 0;
  background: var(--black);
  border-top: 2px solid rgba(93,23,225,.35);
}
.section-alt {
  background: var(--black-deep);
  border-top-color: rgba(93,23,225,.5);
  box-shadow: inset 0 1px 0 rgba(93,23,225,.12);
}
.section-violet {
  background: var(--violet);
  border-top-color: transparent;
}

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 20px;
  color: var(--white);
}
.section-title.dark { color: var(--black); }
.section-desc {
  font-size: 17px; font-weight: 400;
  color: var(--white); max-width: 600px;
  line-height: 1.5; margin-bottom: 36px;
}
.section-desc.dark { color: rgba(24,15,43,.6); }

/* ── About ── */
#about { overflow: visible; padding:120px 0; }

.about-container { position: relative; }

.about-grid {
  display: grid; grid-template-columns: 1fr;
  max-width: 680px;
}
.about-text p {
  font-size: 16px; font-weight: 400; line-height: 1.5;
  color: var(--white); margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--white); font-weight: 700; }

/* Робот — абсолютный, выходит за секцию сверху и снизу */
.about-robot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  z-index: 2;
  pointer-events: none;
}
.about-robot img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(93,23,225,.5))
          drop-shadow(0 0 25px rgba(151,242,30,.12));
  user-select: none;
}

.about-cards { display: flex; flex-direction: column; gap: 12px; }
.info-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(93,23,225,.3);
  border-radius: var(--radius); padding: 20px 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  border-color: rgba(93,23,225,.7);
  box-shadow: 0 0 20px rgba(93,23,225,.15);
}
.info-icon { font-size: 22px; flex-shrink: 0; }
.info-card-title {
  font-size: 11px; font-weight: 700; color: var(--grey-muted);
  text-transform: uppercase; letter-spacing: .08em;
}
.info-card-val { font-size: 15px; font-weight: 700; color: var(--white); margin-top: 3px; }
.hero-card-link {
  display: inline-block;
  align-self: flex-start;
  color: var(--white);
  border-bottom: 1px solid rgba(151,242,30,.4);
  transition: color var(--transition), border-color var(--transition);
}
.hero-card-link:hover { color: var(--lime); border-bottom-color: var(--lime); }

.info-card-link {
  color: var(--white);
  border-bottom: 1px solid rgba(151,242,30,.4);
  transition: color var(--transition), border-color var(--transition);
}
.info-card-link:hover { color: var(--lime); border-bottom-color: var(--lime); }

/* ── Tickets ── */
.tickets-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ticket-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(255,255,255,.03);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ticket-card:hover { border-color: rgba(93,23,225,.5); box-shadow: var(--shadow-violet); }
.ticket-featured {
  border-color: var(--lime);
  background: rgba(151,242,30,.05);
  box-shadow: 0 0 32px rgba(151,242,30,.1);
}
.ticket-featured:hover { border-color: var(--lime); }

.ticket-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
}
.ticket-name {
  font-size: 22px; font-weight: 800; color: var(--white);
}
.ticket-popular {
  background: var(--lime); color: var(--black);
  font-size: 11px; font-weight: 800;
  border-radius: 100px; padding: 3px 12px;
  white-space: nowrap;
}
.ticket-price-row {
  display: flex; flex-direction: column; gap: 4px;
}
.ticket-avail {
  font-size: 12px; font-weight: 500; color: var(--grey-muted);
}
.ticket-price {
  font-size: 26px; font-weight: 800; color: var(--white);
  display: flex; align-items: baseline; gap: 8px;
}
.ticket-old {
  font-size: 16px; font-weight: 500;
  color: var(--grey-muted);
  text-decoration: line-through;
}
.ticket-divider {
  height: 1px; background: rgba(255,255,255,.08);
  margin: 4px 0;
}
.ticket-section-title {
  font-size: 13px; font-weight: 700; color: var(--white);
}
.ticket-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.ticket-list li {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.6);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.ticket-list li::before {
  content: '•';
  position: absolute; left: 0;
  color: var(--lime);
}

/* ── Hotels ── */
.hotels-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.hotel-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(93,23,225,.25);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.hotel-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-violet);
  transform: translateY(-3px);
}
.hotel-discount {
  position: absolute; top: 20px; right: 20px;
  background: var(--lime); color: var(--black);
  font-size: 12px; font-weight: 800;
  border-radius: 100px; padding: 3px 10px;
}
.hotel-stars { color: var(--lime); font-size: 13px; margin-bottom: 10px; }
.hotel-name { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.hotel-desc { font-size: 14px; font-weight: 400; color: var(--grey-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.hotel-promo {
  font-size: 13px; color: var(--grey-muted);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.promo-code {
  background: rgba(93,23,225,.2);
  border: 1px dashed rgba(93,23,225,.6);
  border-radius: 6px; padding: 4px 10px;
  font-size: 13px; font-weight: 800; font-family: monospace;
  color: var(--lime); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--transition);
}
.promo-code:hover { background: rgba(93,23,225,.4); }
.copy-hint { font-size: 11px; font-weight: 500; color: var(--grey-muted); font-family: var(--font); }

.hotel-book-link {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--lime);
  margin-top: 10px;
  transition: color var(--transition);
  align-self: flex-start;
}
.hotel-book-link:hover { color: var(--lime-dark); }

.hotel-tip-card {
  background: rgba(151,242,30,.06);
  border: 1px solid rgba(151,242,30,.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center;
}
.tip-icon { font-size: 28px; }
.hotel-tip-card h3 { font-size: 16px; font-weight: 800; color: var(--lime); }
.hotel-tip-card p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Parties ── */
.party-day { margin-bottom: 36px; }
.party-day:last-child { margin-bottom: 0; }

.party-day-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.party-day-date {
  font-size: 18px; font-weight: 800;
  color: var(--lime);
  background: rgba(151,242,30,.08);
  border: 1px solid rgba(151,242,30,.3);
  border-radius: 10px;
  padding: 6px 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.party-day-date--tbd {
  color: var(--grey-muted);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.party-day-line {
  flex: 1; height: 1px;
  background: rgba(255,255,255,.08);
}
.party-day-count {
  font-size: 12px; font-weight: 600;
  color: var(--grey-muted);
  text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap; flex-shrink: 0;
}

.party-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 14px;
}


.party-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(93,23,225,.28);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 108px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.party-card:hover {
  border-color: var(--violet);
  box-shadow: 0 0 22px rgba(93,23,225,.22);
  transform: translateY(-2px);
}
.party-card--tbd {
  opacity: .6;
  border-style: dashed;
}
.party-card--tbd:hover { opacity: .85; }

.party-time {
  display: inline-flex; align-self: flex-start;
  background: rgba(93,23,225,.18);
  border: 1px solid rgba(93,23,225,.4);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 11px; font-weight: 700;
  color: var(--lime);
  letter-spacing: .03em;
  line-height: 1.5;
}
.party-time--tbd { color: var(--grey-muted); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }

/* Название — span (не кликабельное) */
span.party-name {
  font-size: 15px; font-weight: 800;
  color: var(--white); line-height: 1.35;
}

/* Название — a (кликабельное) */
a.party-name {
  font-size: 15px; font-weight: 800;
  color: var(--white); line-height: 1.35;
  display: flex; align-items: flex-start; gap: 6px;
  transition: color var(--transition);
}
a.party-name::after {
  content: '↗';
  font-size: 13px; font-weight: 700;
  color: var(--lime); opacity: .7; flex-shrink: 0;
  margin-top: 2px;
  transition: opacity var(--transition), transform var(--transition);
}
a.party-name:hover { color: var(--lime); }
a.party-name:hover::after { opacity: 1; transform: translate(2px, -2px); }

.party-org {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.4);
  line-height: 1.3;
}
.party-loc {
  font-size: 12px; font-weight: 500;
  color: rgba(151,242,30,.65);
  line-height: 1.3;
  display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
  transition: color var(--transition);
}
.party-loc::before { content: '📍'; font-size: 11px; }
a.party-loc:hover { color: var(--lime); }
.party-note {
  font-size: 12px; font-weight: 400;
  color: var(--grey-muted); line-height: 1.5;
}
.party-note-link {
  color: rgba(151,242,30,.7);
  border-bottom: 1px solid rgba(151,242,30,.25);
  transition: color var(--transition), border-color var(--transition);
}
.party-note-link:hover { color: var(--lime); border-color: var(--lime); }

/* ── Party intro & video ── */
.parties-intro {
  margin-bottom: 36px;
  border-left: 2px solid rgba(151,242,30,.35);
  padding-left: 20px;
}
.parties-intro-text {
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: var(--grey-muted);
  max-width: 760px;
}

.party-video-thumb {
  display: block;
  position: relative;
  width: 100%;
  max-width: 760px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
  text-decoration: none;
  background: #000;
  aspect-ratio: 16 / 9;
}
.party-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .3s ease;
}
.party-video-thumb:hover img {
  transform: scale(1.03);
  opacity: .85;
}
.party-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  transition: background .3s ease;
}
.party-video-thumb:hover .party-video-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 60%);
}
.party-play-btn svg {
  width: 72px; height: 72px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
  transition: transform .25s ease;
}
.party-video-thumb:hover .party-play-btn svg {
  transform: scale(1.12);
}
.party-play-btn circle { transition: fill .25s ease; }
.party-video-thumb:hover .party-play-btn circle { fill: rgba(93,23,225,.75); }
.party-video-caption {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ── Restaurants ── */
.rest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rest-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(93,23,225,.25);
  border-radius: var(--radius);
  padding: 22px 24px 20px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.rest-card:hover {
  border-color: var(--violet);
  box-shadow: 0 0 28px rgba(93,23,225,.2);
  transform: translateY(-3px);
}

.rest-main { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.rest-name {
  font-size: 20px; font-weight: 800;
  color: var(--white); line-height: 1.2;
}

.rest-desc {
  font-size: 14px; font-weight: 400;
  color: var(--grey-muted); line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rest-address {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: rgba(151,242,30,.8);
  align-self: flex-start;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.rest-address::before {
  content: '📍';
  font-size: 12px;
  font-style: normal;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.rest-address::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px; /* icon 16px + gap 6px */
  right: 0;
  height: 1px;
  background: rgba(151,242,30,.2);
  transition: background var(--transition);
}
.rest-address:hover { color: var(--lime); }
.rest-address:hover::after { background: var(--lime); }

.rest-meta {
  display: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  margin-top: auto;
}
.rest-meta-item {
  flex: 1;
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 16px;
}
.rest-meta-item + .rest-meta-item {
  border-left: 1px solid rgba(255,255,255,.08);
}
.rest-meta-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--grey-muted);
}
.rest-meta-val {
  font-size: 13px; font-weight: 800;
  color: var(--white);
}

.rest-note {
  margin-top: 24px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.22);
  text-align: center;
  letter-spacing: .03em;
}
.rest-category {
  grid-column: 1 / -1;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--grey-muted);
  padding: 18px 0 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 4px;
}
.rest-category:first-child { padding-top: 0; }
.rest-discount {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(151,242,30,.12);
  border: 1px solid rgba(151,242,30,.35);
  color: var(--lime);
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 9px; border-radius: 20px;
  position: absolute; bottom: 18px; right: 20px;
}

/* ── Tabs & Places ── */
.tabs {
  display: flex; gap: 4px; margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tab {
  background: none; border: none;
  padding: 12px 22px; font-family: var(--font);
  font-size: 17px; font-weight: 700; white-space: nowrap;
  color: var(--grey-muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 4px 4px 0 0;
  transition: all var(--transition);
}
.tab:hover { color: var(--white); }
.tab.active { color: var(--lime); border-bottom-color: var(--lime); }

.tabs--dates .tab { color: var(--white); font-size: 20px; }
.tabs--dates .tab:hover { color: var(--lime); }
.tabs--dates .tab.active { color: var(--lime); border-bottom-color: var(--lime); }

/* Bento-панели: все вкладки — одна высота, простое show/hide без прыжков */
.tabs-panels { }
.tab-content { display: none; }
.tab-content.active { display: block; }

.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

/* Sights bento: два равных блока слева + шесть маленьких справа */
/* ── Достопримечательности: bento ── */
.sights-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Левая колонка: 2 равных крупных карточки */
.sights-left {
  display: grid;
  gap: 16px;
  align-content: start;
}
.sights-left .place-photo  { height: 256px; }
.sights-left .place-info   { padding: 18px 20px 22px; }
.sights-left h3            { font-size: 22px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.sights-left p             { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.75); }

/* Правая колонка: 2×3 маленьких карточек */
.sights-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sights-right .place-photo { height: 126px; }

/* Базовая карточка */
.place-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(93,23,225,.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.place-card:hover {
  border-color: var(--violet);
  box-shadow: 0 0 24px rgba(93,23,225,.2);
  transform: translateY(-3px);
}

.place-photo {
  flex-shrink: 0;
  overflow: hidden;
}
.place-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.place-card:hover .place-photo img { transform: scale(1.06); }

.place-info { padding: 14px 16px 18px; flex: 1; }
.place-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.place-card p  { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.72); line-height: 1.5; }

/* ── Экскурсии: 2×2 ── */
.trips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trips-grid .place-photo { height: 210px; }
.trips-grid .place-info  { padding: 18px 20px 22px; }
.trips-grid h3           { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.trips-grid p            { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.75); }

/* ── Partnerkin ── */
.pk-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 28px;
}
.pk-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pk-text {
  font-size: 16px; font-weight: 400; line-height: 1.5;
  color: var(--white);
}

.pk-prizes { display: flex; flex-direction: column; }
.pk-prizes-float {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pk-float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Fixed-height image area — центрирование по вертикали */
.pk-float-img-wrap {
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-float-img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.65));
  transition: transform .45s ease, filter .45s ease;
}
.pk-float-item:hover .pk-float-img {
  filter: drop-shadow(0 28px 52px rgba(93,23,225,.4))
          drop-shadow(0 10px 24px rgba(0,0,0,.55));
}

.pk-float-info { text-align: center; }
.pk-float-name {
  font-size: 13px; font-weight: 800;
  color: var(--white); margin-bottom: 3px;
}
.pk-float-color {
  font-size: 11px; font-weight: 500;
  color: var(--grey-muted);
  text-transform: uppercase; letter-spacing: .07em;
}

.pk-stand-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  margin-top: auto;
  padding: 16px 28px;
  background: rgba(151,242,30,.07);
  border: 1px solid rgba(151,242,30,.3);
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(151,242,30,.08);
}
.pk-stand-label {
  font-size: 13px; font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pk-stand-num {
  font-size: 28px; font-weight: 900;
  color: var(--lime);
  letter-spacing: .02em;
}

@media (max-width: 900px) {
  .pk-layout { grid-template-columns: 1fr; gap: 40px; }
  .pk-prizes-float { gap: 16px; }
  .pk-float-img-wrap { height: 180px; }
}

/* ── Networking ── */
.net-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  margin-top: 28px;
}
.net-left { display: flex; flex-direction: column; gap: 20px; }

.net-text {
  font-size: 16px; font-weight: 400; line-height: 1.5;
  color: var(--white);
}

/* Download block */
.net-download {
  margin-top: 4px;
  padding: 26px 28px;
  background: rgba(93,23,225,.08);
  border: 1px solid rgba(93,23,225,.3);
  border-radius: var(--radius);
  box-shadow: 0 0 32px rgba(93,23,225,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.net-download-title {
  font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 20px;
}
.net-qr-row {
  display: flex;
  gap: 32px;
}
.net-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.net-qr-img {
  width: 150px; height: auto;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  display: block;
}
.net-qr-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--white);
}
.net-qr-label svg { opacity: .8; }

/* Article link */
.net-article {
  font-size: 14px; font-weight: 400; line-height: 1.65;
  color: var(--grey-muted);
  padding-top: 4px;
}
.net-article-link {
  color: var(--lime);
  border-bottom: 1px solid rgba(151,242,30,.3);
  transition: border-color var(--transition);
  white-space: nowrap;
}
.net-article-link:hover { border-color: var(--lime); }

/* Phone mockups */
.net-right { position: relative; }
.net-phones {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.net-phone {
  position: absolute;
  width: 230px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
}
.net-phone img { width: 100%; display: block; }
.net-phone--back {
  right: 20px;
  top: 20px;
  transform: rotate(4deg);
  filter: brightness(.75);
  z-index: 1;
}
.net-phone--front {
  left: 20px;
  bottom: 20px;
  transform: rotate(-3deg);
  z-index: 2;
  box-shadow: 0 32px 80px rgba(93,23,225,.35), 0 0 0 1px rgba(93,23,225,.3);
}

@media (max-width: 900px) {
  .net-layout { grid-template-columns: 1fr; gap: 48px; }
  .net-phones { height: 440px; }
  .net-phone { width: 180px; }
}
@media (max-width: 680px) {
  .net-qr-row { gap: 20px; }
  .net-qr-img { width: 100px; height: auto; }
  .net-phones { height: 360px; }
  .net-phone { width: 150px; }
}

/* ── Footer ── */
.site-footer { background: var(--black-deep); padding: 40px 0; border-top: 1px solid rgba(93,23,225,.2); }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .logo-img--mac { height: 24px; }
.footer-brand .logo-img--pk  { height: 14px; }
.footer-brand .logo-x { font-size: 15px; color: var(--grey-dark); }
.footer-links { display: flex; gap: 24px; margin-left: auto; }
.footer-links a { font-size: 14px; font-weight: 500; color: var(--grey-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--lime); }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--violet); color: var(--white);
  padding: 12px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  opacity: 0; pointer-events: none;
  transition: all .3s ease; z-index: 999;
  border: 1px solid rgba(151,242,30,.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Fade-in (handled by JS) ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1060px) {
  .hero-content { grid-template-columns: 1fr 360px; gap: 40px; }
  .about-grid { max-width: calc(100% - 380px); }
  .about-robot { width: 340px; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; max-width: 100%; }
  .about-robot { display: none; }
  .hotels-grid { grid-template-columns: 1fr 1fr; }
  .tickets-grid { grid-template-columns: 1fr 1fr; }

  .party-cards { grid-template-columns: repeat(2, 1fr); }
  .rest-grid { grid-template-columns: 1fr; }
  .pk-prizes-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bento → 2 колонки, все карточки равные */
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .place-hero,
  .place-wide { grid-column: span 1; grid-row: span 1; }
  .place-hero .place-info { padding: 14px 16px 18px; }
  .place-hero h3 { font-size: 14px; margin-bottom: 5px; }
  .place-hero p { font-size: 12px; line-height: 1.55; }
  .place-wide .place-info { padding: 14px 16px 18px; }
  .place-wide h3 { font-size: 14px; }
  .place-wide p { font-size: 12px; }

  /* Sights bento на мобильных → одна колонка, высоты через min-height карточек */
  .sights-bento { grid-template-columns: 1fr; }
  .sights-left .place-photo  { height: 200px; }
  .sights-right { grid-template-columns: 1fr 1fr; }
  .sights-right .place-photo { height: 120px; }

  /* Trips на мобильных → одна колонка */
  .trips-grid { grid-template-columns: 1fr; }
  .trips-grid .place-photo { height: 200px; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hotels-grid { grid-template-columns: 1fr; }
  .party-cards { grid-template-columns: 1fr; }
  .places-grid { grid-auto-rows: 230px; }
  .section { padding: 48px 0; }
  .hero-content { padding-top: 100px; }
  .hero-stats { gap: 0; }
  .stat { padding-right: 20px; }
  .stat-num { font-size: 28px; }
  .stat-divider { margin-right: 20px; }
  .tabs { overflow-x: auto;  overflow-y:hidden;}
  .tab { white-space: nowrap; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }
  .rest-discount {position: relative; bottom: unset; right: unset}

  .footer-links  {margin-left:unset}
}
