/* ============================================
   CIELO ESTRELLADO — Premium Landing Page
   Dark Luxury Aesthetic
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #181818;
  --dark-4: #1e1e1e;
  --gray-900: #222222;
  --gray-800: #333333;
  --gray-700: #444444;
  --gray-600: #666666;
  --gray-500: #888888;
  --gray-400: #aaaaaa;
  --gray-300: #cccccc;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-dark: #a68a3a;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --star-white: #e8e4ff;
  --star-blue: #a5b4fc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1200px;
  --section-py: clamp(80px, 10vw, 140px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-400);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 56px;
  text-align: center;
}

.section-title--left {
  text-align: left;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 60px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 0.9375rem;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.nav__logo-icon {
  color: var(--gold);
  font-size: 1.25rem;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  /* shown on desktop */
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  padding: 24px;
}

.nav__mobile.active {
  display: block;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.nav__mobile a {
  font-size: 1rem;
  color: var(--gray-300);
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #0d0d1a 0%, #000000 70%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 600px 400px at 50% 40%, rgba(165, 180, 252, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 30% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 70% 50%, rgba(165, 180, 252, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero__title--italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--white) 0%, var(--star-blue) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll span {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gray-600), transparent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- BRANDS --- */
.brands {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--dark);
}

.brands__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.brands__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brands__item {
  opacity: 0.3;
  transition: opacity 0.4s;
}

.brands__item:hover {
  opacity: 0.7;
}

.brands__logo {
  width: 64px;
  height: 64px;
  color: var(--gray-500);
}

.brands__logo--wide {
  width: 90px;
  height: 40px;
}

@media (max-width: 640px) {
  .brands__grid {
    gap: 24px;
  }
  .brands__logo {
    width: 52px;
    height: 52px;
  }
}

/* --- VALUE --- */
.value {
  padding: var(--section-py) 0;
  background: var(--black);
}

.value__headline {
  text-align: center;
  margin-bottom: 72px;
}

.value__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.4;
  font-style: italic;
}

.value__quote--accent {
  color: var(--white);
  font-style: normal;
  font-weight: 500;
}

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

.value__card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.value__card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  background: var(--dark-3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.value__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.value__card-icon svg {
  width: 100%;
  height: 100%;
}

.value__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.value__card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .value__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .value__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- PACKAGES --- */
.packages {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.packages .section-eyebrow,
.packages .section-title {
  text-align: center;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.5s var(--ease-out);
}

.pkg:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.pkg--featured {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--dark-2) 40%);
  border-color: rgba(201, 168, 76, 0.25);
  transform: scale(1.04);
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.08);
}

.pkg--featured:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
}

.pkg__highlight-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
}

.pkg__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pkg__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.pkg__badge--gold {
  color: var(--gold);
}

.pkg__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pkg__currency {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gray-500);
}

.pkg__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.pkg__unit {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.05em;
}

.pkg__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pkg__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.pkg__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .pkg--featured {
    transform: none;
    order: -1;
  }
  .pkg--featured:hover {
    transform: translateY(-4px);
  }
}

/* --- GALLERY --- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--black);
}

.gallery .section-eyebrow,
.gallery .section-title {
  text-align: center;
}

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

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease-out);
}

.gallery__item:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: scale(1.02);
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
}

.gallery__placeholder:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: scale(1.01);
}

.gallery__placeholder-stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(165,180,252,0.6), transparent),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(201,168,76,0.4), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 90%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 85% 75%, rgba(165,180,252,0.5), transparent);
  animation: starsTwinkle 4s ease-in-out infinite alternate;
}

@keyframes starsTwinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.gallery__placeholder span {
  position: relative;
  z-index: 2;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-300);
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item--wide {
    grid-column: span 1;
  }
}

/* --- EXPERIENCE --- */
.experience {
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0;
  overflow: hidden;
  text-align: center;
}

.experience__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #0d0d1a 0%, #000000 70%);
}

.experience__stars {
  position: absolute;
  inset: 0;
}

.experience__content {
  position: relative;
  z-index: 10;
}

.experience__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.25;
  margin-bottom: 24px;
}

.experience__title--accent {
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience__text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* --- CONTACT --- */
.contact {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.contact__detail p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact__map {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__map {
    height: 300px;
  }
}

/* --- FINAL CTA --- */
.final-cta {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, #0d0d1a 0%, #000000 70%);
}

.final-cta__stars {
  position: absolute;
  inset: 0;
}

.final-cta__content {
  position: relative;
  z-index: 10;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.25;
  margin-bottom: 40px;
}

.final-cta__title--accent {
  font-weight: 600;
  color: var(--white);
}

/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--black);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--gold);
}

@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- WHATSAPP FLOAT --- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-out);
  animation: waFloat 1s var(--ease-out) 2s both;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waFloat {
  from { opacity: 0; transform: scale(0) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- REVEAL ANIMATIONS --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- STAR DOT (JS-generated) --- */
.star {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.star--twinkle {
  animation: twinkle var(--duration, 3s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: var(--min-opacity, 0.2); transform: scale(0.8); }
  100% { opacity: var(--max-opacity, 1);   transform: scale(1.2); }
}

.star--shooting {
  width: 2px !important;
  height: 2px !important;
  background: var(--white) !important;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.6);
  opacity: 0;
  animation: shoot var(--shoot-duration, 1.5s) var(--shoot-delay, 0s) linear infinite;
}

@keyframes shoot {
  0%   { opacity: 0; transform: translate(0, 0) rotate(-45deg); }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  60%  { opacity: 0; transform: translate(var(--shoot-x, 200px), var(--shoot-y, 200px)) rotate(-45deg); }
  100% { opacity: 0; }
}

/* --- SMOOTH SCROLLBAR (webkit) --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-800);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-700);
}

/* --- SELECTION --- */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--white);
}
