/* =====================================================
   PREMIUM COUPLE WEBSITE - Luxury Romantic Pink
   Quality: ThemeForest / Awwwards Level
   ===================================================== */

:root {
  --primary: #FF69B4;
  --primary-soft: #FFB6C1;
  --primary-dusty: #D4A5A5;
  --rose-gold: #B76E79;
  --rose-gold-light: #E8C4C4;
  --deep-plum: #4A1942;
  --dark-purple: #2D1B2E;
  --black-soft: #1A0A1A;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: 20px;
  --radius: 25px;
  --radius-sm: 16px;
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(255, 105, 180, 0.25);
  --font-primary: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  background: var(--black-soft);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
}

/* ========== ANIMATED BACKGROUND ========== */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #1A0A1A 0%, #2D1B2E 40%, #4A1942 70%, #1A0A1A 100%);
  overflow: hidden;
}

.bg-aurora::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255, 105, 180, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(199, 21, 133, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(183, 110, 121, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(221, 160, 221, 0.1) 0%, transparent 40%);
  animation: auroraMove 20s ease-in-out infinite alternate;
}

.bg-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

@keyframes auroraMove {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-5%, 3%) rotate(2deg) scale(1.05); }
  100% { transform: translate(3%, -4%) rotate(-1deg) scale(1.02); }
}

.floating-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FF69B4, transparent 70%);
  top: 10%; left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C71585, transparent 70%);
  top: 50%; right: -5%;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #D4A5A5, transparent 70%);
  bottom: 10%; left: 30%;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFB6C1, #FF69B4, #E8C4C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* ========== GLASS CARD ========== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF69B4, #C71585);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 182, 193, 0.5);
  color: #FFB6C1;
}

.btn-outline:hover {
  background: rgba(255, 105, 180, 0.15);
  border-color: #FF69B4;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(26, 10, 26, 0.3) 0%, rgba(26, 10, 26, 0.7) 60%, rgba(26, 10, 26, 0.95) 100%),
    url('../images/hero-placeholder.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1.2s var(--transition) both;
}

.hero-names {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-names .heart {
  display: inline-block;
  color: #FF69B4;
  animation: heartbeat 1.5s ease-in-out infinite;
  margin: 0 0.15em;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
}

.scroll-down svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Floating hearts */
.floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.heart-float {
  position: absolute;
  color: rgba(255, 105, 180, 0.4);
  font-size: 1.2rem;
  animation: floatHeart 8s linear infinite;
  opacity: 0;
}

@keyframes floatHeart {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 1.5rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ========== LOVE COUNTER ========== */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.counter-item {
  text-align: center;
  padding: 1.75rem 1rem;
  transition: transform 0.4s var(--transition);
}

.counter-item:hover {
  transform: translateY(-6px);
}

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #FFB6C1, #FF69B4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ========== GALLERY ========== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-premium);
  transition: all 0.5s var(--transition);
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 105, 180, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 10, 26, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

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

.gallery-caption {
  font-size: 0.95rem;
  font-weight: 500;
}

.gallery-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 5, 15, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255, 105, 180, 0.4);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 105, 180, 0.4);
}

/* ========== MUSIC PLAYER ========== */
.music-player {
  max-width: 480px;
  margin: 0 auto;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.music-cover {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.music-info {
  flex: 1;
  min-width: 0;
}

.music-title {
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-artist {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

.music-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.music-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #FF69B4, #C71585);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.music-btn:hover {
  transform: scale(1.1);
}

.music-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.music-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #FF69B4, #FFB6C1);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}

/* Floating mini player */
.mini-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  animation: slideInRight 0.4s var(--transition);
}

.mini-player.active {
  display: flex;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #FF69B4, #C71585, transparent);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s var(--transition);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF69B4, #C71585);
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.25);
  z-index: 1;
}

.timeline-date {
  font-size: 0.8rem;
  color: #FFB6C1;
  font-weight: 500;
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== LOVE NOTES ========== */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.note-card {
  padding: 2rem;
  position: relative;
  transition: all 0.5s var(--transition);
  transform-style: preserve-3d;
  min-height: 200px;
}

.note-card:hover {
  transform: translateY(-8px) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.note-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.note-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.note-content {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== BUCKET LIST ========== */
.bucket-container {
  max-width: 560px;
  margin: 0 auto;
}

.bucket-progress {
  margin-bottom: 2rem;
  text-align: center;
}

.progress-bar-bg {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0.75rem 0;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF69B4, #C71585, #D4AF37);
  border-radius: 10px;
  transition: width 0.8s var(--transition);
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.progress-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.bucket-list {
  list-style: none;
}

.bucket-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--transition);
  cursor: default;
}

.bucket-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bucket-check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(255, 182, 193, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.bucket-item.done .bucket-check {
  background: linear-gradient(135deg, #FF69B4, #C71585);
  border-color: transparent;
}

.bucket-item.done .bucket-check svg {
  opacity: 1;
}

.bucket-check svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  color: #fff;
}

.bucket-title {
  flex: 1;
  font-size: 1rem;
}

.bucket-item.done .bucket-title {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
}

/* ========== STORY ========== */
.story-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.story-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: #FFB6C1;
}

.story-content p {
  margin-bottom: 1.25rem;
}

.story-content blockquote {
  border-left: 3px solid #FF69B4;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255, 105, 180, 0.08);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.story-content strong {
  color: #FFB6C1;
}

/* ========== QUOTES ========== */
.quote-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.quote-author {
  font-size: 0.95rem;
  color: #FFB6C1;
  font-weight: 500;
}

/* ========== SURPRISE ========== */
.surprise-section {
  text-align: center;
  padding: 4rem 1.5rem;
}

.surprise-btn {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
  position: relative;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-heart {
  color: #FF69B4;
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .music-player { flex-direction: column; text-align: center; }
  .music-controls { justify-content: center; }
  .timeline { padding-left: 1.5rem; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .mini-player { bottom: 1rem; right: 1rem; left: 1rem; max-width: none; }
  .notes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .counter-value { font-size: 1.8rem; }
}

/* Confetti canvas */
#confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 15, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  animation: scaleIn 0.4s var(--transition);
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}