:root {
  --bg-1: #05031a;
  --bg-2: #140734;
  --bg-3: #1f0a55;
  --text: #eef1ff;
  --muted: #c3c8f0;
  --surface: rgba(22, 14, 58, 0.68);
  --surface-2: rgba(255, 255, 255, 0.08);
  --line: rgba(169, 188, 255, 0.28);
  --brand: #ff8b1f;
  --brand-hot: #ff6a00;
  --violet: #8d52ff;
  --blue: #2dd6ff;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.45;
  background:
    radial-gradient(circle at 15% 15%, rgba(78, 167, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(146, 58, 255, 0.35), transparent 36%),
    radial-gradient(circle at 52% 86%, rgba(255, 119, 0, 0.22), transparent 28%),
    linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(45, 214, 255, 0.36), transparent 66%);
  filter: blur(6px);
}

body::after {
  right: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.35), transparent 68%);
  filter: blur(8px);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.nicotine-warning {
  background: linear-gradient(90deg, #ff8b1f, #ff5e00);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, rgba(6, 7, 34, 0.94), rgba(30, 11, 78, 0.95));
  border-bottom: 1px solid rgba(81, 164, 255, 0.35);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand-block p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #c3c8f0;
}
.brand-block{
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bungee", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: #ff8b1f;
  text-shadow: 0 0 14px rgba(255, 139, 31, 0.45);
}

.brand-logo {
  width: 150px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #f2f4ff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 10px;
  transition: 0.2s ease;
}

.main-nav a:hover {
  border-color: rgba(161, 208, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  white-space: nowrap;
  padding: 9px 14px;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(161, 208, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 9px 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #f2f4ff;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

main {
  width: min(1140px, 92%);
  margin: 30px auto 120px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 34px;
  position: relative;
  min-height: 70vh;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(6, 8, 36, 0.74), rgba(25, 10, 66, 0.7)),
    url("./images/merrymi-olejki-banner.png") left top / cover no-repeat,
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2), transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(45, 214, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(7, 9, 41, 0.75), rgba(35, 12, 89, 0.75));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(170, 230, 255, 0.2);
  pointer-events: none;
}

.hero::before {
  width: 26px;
  height: 26px;
  left: 42%;
  top: 8%;
}

.hero::after {
  width: 48px;
  height: 48px;
  left: 72%;
  top: 18%;
}

.glow {
  position: absolute;
  right: 10%;
  top: 8%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(141, 82, 255, 0.42), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: "Baloo 2", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: #ffd08f;
  text-shadow: 0 0 14px rgba(255, 139, 31, 0.65);
}

h1,
h2,
h3 {
  font-family: "Baloo 2", sans-serif;
  line-height: 1.03;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(142, 84, 255, 0.55);
}

h1 span {
  color: #c7b3ff;
}

.hero-text p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-text strong {
  color: #ffd6ad;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 14px;
  padding: 12px 18px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9f34 0%, #ff6a00 55%, #ff3b2f 100%);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(255, 118, 0, 0.4),
    0 0 0 1px rgba(255, 196, 126, 0.26) inset;
  animation: ctaPulse 2.2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.12);
  box-shadow: 0 14px 28px rgba(255, 118, 0, 0.52);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-ghost {
  border-color: rgba(169, 188, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #f1f4ff;
}

.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(72, 154, 255, 0.14);
}

.btn-primary::after,
.variant-cta::after,
.floating-ticket-btn::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -38%;
  width: 32%;
  height: 320%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: ctaShine 2.8s ease-in-out infinite;
}

.hero-banner {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.video-promo {
  position: relative;
  margin: 26px 0 34px;
  min-height: 380px;
  border-radius: 24px;
  border: 1px solid rgba(190, 208, 255, 0.35);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 6, 35, 0.84) 0%, rgba(22, 8, 67, 0.7) 45%, rgba(9, 8, 35, 0.25) 100%);
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  width: min(640px, 92%);
  padding: clamp(24px, 4vw, 48px);
}

.video-overlay h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(142, 84, 255, 0.62);
}

.video-overlay p {
  color: #dbe3ff;
  margin-bottom: 18px;
}

.video-overlay strong {
  color: #ffd8ad;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.card {
  background: linear-gradient(150deg, rgba(14, 13, 56, 0.78), rgba(23, 18, 67, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.card h2 {
  color: #ffd08f;
  margin-bottom: 6px;
  text-shadow: 0 0 14px rgba(255, 139, 31, 0.58);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.reasons {
  margin: 28px 0;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 12, 52, 0.9), rgba(25, 14, 69, 0.86));
  border: 1px solid rgba(169, 188, 255, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.reasons h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #eef1ff;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reason-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 143, 44, 0.65);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}

.reason-card h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.reason-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #c3c8f0;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.95rem, 3.1vw, 2.7rem);
  margin-bottom: 8px;
}

.flavors {
  position: relative;
  margin: 44px 0;
  padding: 24px 18px;
  border-radius: 22px;
  border: 1px solid rgba(157, 189, 255, 0.3);
  background:
    radial-gradient(circle at 80% 10%, rgba(45, 214, 255, 0.26), transparent 28%),
    radial-gradient(circle at 18% 8%, rgba(255, 122, 0, 0.27), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(139, 67, 255, 0.32), transparent 36%),
    linear-gradient(138deg, #221056 0%, #17134e 35%, #2e0e6a 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flavors::before,
.flavors::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.flavors::before {
  width: 38px;
  height: 38px;
  right: 18%;
  top: 16px;
  background: rgba(140, 222, 255, 0.28);
}

.flavors::after {
  width: 20px;
  height: 20px;
  right: 12%;
  top: 70px;
  background: rgba(250, 239, 255, 0.22);
}

.flavors .section-head h2,
.flavors .section-head p {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.flavors .section-head h2 {
  font-family: "Bungee", sans-serif;
  letter-spacing: 0.02em;
}

.flavor-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 18px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.carousel-track-wrap.dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.42s ease;
  will-change: transform;
}

.flavor-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(195, 218, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.flavor-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.variant-badge {
  display: inline-block;
  margin: 12px 14px 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, #ff3f77, #ff7a00);
  box-shadow: 0 8px 16px rgba(255, 58, 95, 0.32);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.variant-badge.show {
  opacity: 1;
  transform: translateY(0);
}

.flavor-card h3 {
  margin: 0;
  padding: 12px 14px 10px;
  min-height: 62px;
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.variant-desc {
  margin: 0;
  padding: 0 14px 12px;
  color: #d9e3ff;
  font-size: 0.88rem;
  line-height: 1.3;
}

.variant-cta {
  display: block;
  margin: 0 14px 14px;
  width: calc(100% - 28px);
  padding: 9px 14px;
  border-radius: 10px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #ff9f34 0%, #ff6a00 58%, #ff3b2f 100%);
  box-shadow: 0 10px 20px rgba(255, 118, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.variant-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px) scale(1.01);
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(18, 10, 52, 0.52);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 144, 51, 0.72);
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #ffd6ad);
}

.carousel-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.reviews {
  margin: 36px 0;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(169, 188, 255, 0.3);
  background: linear-gradient(145deg, rgba(14, 10, 48, 0.88), rgba(23, 13, 63, 0.86));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 143, 44, 0.45);
  border-radius: 14px;
  padding: 14px;
}

.review-stars {
  margin: 0 0 6px;
  color: #ffcf66;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.review-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.1rem;
}

.review-card p {
  margin: 0;
  color: #c7d0ff;
}

.slot {
  background: linear-gradient(150deg, rgba(16, 11, 49, 0.88), rgba(26, 13, 66, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 190px;
}

.slot img {
  width: 100%;
  height: auto;
  display: block;
}

.slot span {
  display: block;
  padding: 10px 12px;
  font-weight: 700;
  color: #e7ecff;
  border-top: 1px solid var(--line);
}

.placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  color: #d4daf8;
  padding: 14px;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.placeholder div {
  font-family: "Bungee", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #f6f8ff;
}

.faq {
  margin-top: 42px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(15, 11, 48, 0.9), rgba(23, 13, 64, 0.86));
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(87, 146, 255, 0.12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
}

.bottom-packshot {
  width: 100%;
  margin: 40px 0 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(190, 208, 255, 0.35);
  box-shadow: var(--shadow);
}

.bottom-packshot img {
  width: 100%;
  display: block;
  height: auto;
}

.floating-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(140deg, #ff9f34 0%, #ff6a00 50%, #ff3b2f 100%);
  box-shadow:
    0 16px 28px rgba(255, 118, 0, 0.44),
    0 0 0 1px rgba(255, 216, 168, 0.25) inset;
  cursor: pointer;
  overflow: hidden;
  animation: ctaPulse 2.3s ease-in-out infinite;
}

.floating-ticket-btn img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.floating-ticket-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
}

.ticket-modal[hidden] {
  display: none !important;
}

.ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 26, 0.72);
}

.ticket-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(169, 188, 255, 0.35);
  background: linear-gradient(150deg, rgba(16, 11, 49, 0.96), rgba(26, 13, 66, 0.95));
  box-shadow: var(--shadow);
  padding: 20px;
}

.ticket-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.ticket-modal__panel h2 {
  margin: 0 0 6px;
  color: #fff;
}

.ticket-sub {
  margin: 0 0 14px;
  color: #c7d0ff;
}

.scratch-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px dashed rgba(255, 153, 51, 0.65);
  margin-bottom: 14px;
  background: #fff7de;
}

.scratch-wrap::before,
.scratch-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 11, 49, 0.96);
  z-index: 5;
}

.scratch-wrap::before {
  left: -13px;
}

.scratch-wrap::after {
  right: -13px;
}

.scratch-prize {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  color: #2d1a05;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 221, 156, 0.7), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255, 202, 113, 0.16) 0, rgba(255, 202, 113, 0.16) 14px, rgba(255, 244, 211, 0.1) 14px, rgba(255, 244, 211, 0.1) 28px),
    linear-gradient(140deg, #fff3cf, #ffe6af 50%, #ffd98e);
}

.prize-label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7f4a10;
}

.prize-text {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #432300;
}

.prize-text strong {
  display: block;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  color: #ff5f00;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.65);
}

.prize-note {
  font-size: 0.88rem;
  color: #6a430c;
  font-weight: 700;
}

#scratch-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: crosshair;
}

.scratch-fireworks {
  position: absolute;
  top: -8px;
  width: 190px;
  height: 240px;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 4;
}

.scratch-fireworks-left {
  left: -10px;
}

.scratch-fireworks-right {
  right: -10px;
  transform: translateY(8px) scale(0.95) scaleX(-1);
}

.scratch-wrap.win .scratch-fireworks {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scratch-wrap.win .scratch-fireworks-right {
  transform: translateY(0) scale(1) scaleX(-1);
}

.ticket-claim {
  width: 100%;
  display: block;
  text-align: center;
  border: 0;
  cursor: pointer;
}

@keyframes ctaPulse {
  0% {
    box-shadow:
      0 10px 24px rgba(255, 118, 0, 0.38),
      0 0 0 0 rgba(255, 135, 41, 0.22);
  }
  70% {
    box-shadow:
      0 13px 30px rgba(255, 118, 0, 0.46),
      0 0 0 10px rgba(255, 135, 41, 0);
  }
  100% {
    box-shadow:
      0 10px 24px rgba(255, 118, 0, 0.38),
      0 0 0 0 rgba(255, 135, 41, 0);
  }
}

@keyframes ctaShine {
  0% {
    left: -45%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  34% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .floating-ticket-btn,
  .btn-primary::after,
  .variant-cta::after,
  .floating-ticket-btn::after {
    animation: none !important;
  }
}

.site-footer {
  margin-top: 26px;
  padding: 30px 18px 90px;
  border-top: 1px solid rgba(161, 188, 255, 0.3);
  background: linear-gradient(160deg, rgba(11, 8, 40, 0.9), rgba(23, 10, 61, 0.92));
  border-radius: 20px 20px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
}

.site-footer h2 {
  font-size: 1.5rem;
}

.site-footer p {
  margin: 0;
  color: #c7d0ff;
}

.site-footer section {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: 120px;
  object-fit: contain;
}

.site-footer a {
  color: #ffc78f;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(161, 188, 255, 0.26);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: #e4e9ff;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .flavor-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .flavor-card h3 {
    font-size: 1.26rem;
    min-height: 58px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px 16px;
  }

  .reasons-grid,
  .reviews-grid,
  .stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .floating-ticket-btn {
    left: 12px;
    right: 12px;
    text-align: center;
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .reasons-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(120deg, rgba(6, 8, 36, 0.74), rgba(25, 10, 66, 0.7)),
      url("./images/merrymi-olejki-banner-mobile.png") center top / cover no-repeat,
      radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2), transparent 20%),
      radial-gradient(circle at 80% 0%, rgba(45, 214, 255, 0.28), transparent 30%),
      linear-gradient(135deg, rgba(7, 9, 41, 0.75), rgba(35, 12, 89, 0.75));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
    align-self: center;
  }

  .main-nav {
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    grid-column: 1 / -1;
    padding-top: 4px;
  }

  .main-nav a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(161, 208, 255, 0.3);
    border-radius: 10px;
  }

  .header-cta {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .site-header.nav-open .header-cta {
    display: block;
    width: 100%;
    text-align: center;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand-logo {
    width: 130px;
  }

  .flavors {
    padding: 18px 10px;
  }

  .reviews {
    padding: 14px;
    margin: 24px 0;
  }

  .reviews .section-head h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .reviews .section-head p {
    font-size: 0.9rem;
    margin: 0 0 10px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-card {
    padding: 12px;
  }

  .review-card h3 {
    font-size: 1rem;
  }

  .review-card p {
    font-size: 0.93rem;
    line-height: 1.35;
  }

  .flavor-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flavor-card {
    flex: 0 0 100%;
  }

  .flavor-card img {
    height: 290px;
  }

  .flavor-card h3 {
    font-size: 1.15rem;
    min-height: unset;
  }

  .carousel-btn {
    position: absolute;
    top: 42%;
    z-index: 3;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}
