/* ============================================================
   MARYORI — PRIMER MES JUNTOS
   Paleta: Rosa, Negro, Blanco
   Fuente: Playfair Display + Inter + Dancing Script
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --pink-light:   #FFD6E7;
  --pink-soft:    #FFB3CC;
  --pink-mid:     #FF80AB;
  --pink-hot:     #FF4081;
  --pink-deep:    #E91E8C;
  --rose-dark:    #AD1457;
  --black:        #0D0D0D;
  --black-soft:   #1A1A1A;
  --black-card:   #111111;
  --white:        #FFFFFF;
  --white-soft:   #FFF5F8;
  --gray-muted:   #999999;
  --glass-bg:     rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 180, 204, 0.2);

  --font-display: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-pink: 0 0 40px rgba(255, 64, 129, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.hidden {
  display: none !important;
}

/* ---- PARTICLES CANVAS ---- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeInOverlay 0.5s ease;
}

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

.intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro-heart {
  font-size: 80px;
  animation: floatHeart 2s ease-in-out infinite;
}

@keyframes floatHeart {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-15px) scale(1.1); }
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-hot), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-sub {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--pink-soft);
  opacity: 0.85;
}

#intro-btn {
  margin-top: 10px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-pink);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#intro-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

#intro-btn:hover::before {
  transform: translateX(0);
}

#intro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255, 64, 129, 0.5);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
#main-content {
  position: relative;
  z-index: 1;
}

#main-content.fade-in {
  animation: pageFadeIn 1s ease forwards;
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,64,129,0.18) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 100%, rgba(233,30,140,0.12) 0%, transparent 60%),
              var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,180,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating petals */
.floating-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 1.4rem;
  animation: petalFall linear infinite;
  opacity: 0;
  user-select: none;
}

@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.hero-pre {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--pink-soft);
  margin-bottom: 12px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.5s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-hot), var(--pink-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--pink-light);
  opacity: 0.8;
  margin-bottom: 40px;
  font-style: italic;
  animation: fadeUp 1s ease 0.7s both;
}

/* COUNTER */
.counter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.9s both;
  margin-bottom: 20px;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-muted);
  margin-top: 4px;
}

.counter-dot {
  font-size: 2rem;
  color: var(--pink-mid);
  font-weight: 700;
  align-self: center;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero-date {
  font-size: 0.85rem;
  color: var(--gray-muted);
  animation: fadeUp 1s ease 1.1s both;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  font-size: 0.85rem;
  color: var(--pink-soft);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
  letter-spacing: 2px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

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

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section {
  padding: 100px 20px;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink-hot);
  background: rgba(255, 64, 129, 0.1);
  border: 1px solid rgba(255, 64, 129, 0.25);
  border-radius: var(--radius-xl);
  padding: 6px 18px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--white), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--gray-muted);
  font-size: 1rem;
  font-style: italic;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   DYNAMIC SECTION
   ============================================================ */
.dynamic-section {
  background: linear-gradient(180deg, var(--black) 0%, #0d0510 50%, var(--black) 100%);
}

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

.dynamic-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.dynamic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dynamic-card:hover::before {
  opacity: 1;
}

.dynamic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 64, 129, 0.4);
  box-shadow: 0 20px 60px rgba(255, 64, 129, 0.15);
}

.card-big {
  grid-column: span 2;
}

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

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.dynamic-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--pink-light);
}

.dynamic-card p {
  color: var(--gray-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--black);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 64, 129, 0.25);
  border-color: var(--pink-hot);
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-overlay p {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--pink-light);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a12, #0d0508);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
}

.placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.placeholder-text {
  font-size: 0.75rem;
  color: var(--gray-muted);
  text-align: center;
  opacity: 0.7;
  line-height: 1.5;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9998;
  gap: 20px;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-close:hover {
  background: var(--pink-hot);
}

#lightbox-caption {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--pink-light);
}

/* ============================================================
   EVOLUTION / LETTER SECTION
   ============================================================ */
.evolution-section {
  background: linear-gradient(180deg, var(--black) 0%, #0a0208 100%);
}

.letter-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.letter-card {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 80px rgba(255, 64, 129, 0.08);
}

.letter-header {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose-dark));
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.letter-date {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--white);
}

.letter-body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.letter-body p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.85;
}

.letter-body em {
  color: var(--pink-soft);
  font-style: italic;
}

.letter-closing {
  margin-top: 10px;
  font-family: var(--font-script);
  font-size: 1.3rem !important;
  color: var(--pink-light) !important;
}

/* ============================================================
   REASONS SECTION
   ============================================================ */
.reasons-section {
  background: var(--black);
}

.reasons-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.reason-display {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.reason-display.glow {
  box-shadow: var(--shadow-card), 0 0 60px rgba(255, 64, 129, 0.3);
}

.reason-icon {
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

.reason-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--pink-light);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.reason-num {
  font-size: 0.8rem;
  color: var(--gray-muted);
  letter-spacing: 2px;
}

.reason-btn {
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-pink);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.reason-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 64, 129, 0.5);
}

.reason-btn:active {
  transform: scale(0.97);
}

.reason-counter-txt {
  font-size: 0.85rem;
  color: var(--gray-muted);
}

.reason-counter-txt span {
  color: var(--pink-soft);
  font-weight: 600;
}

/* ============================================================
   TIKTOK SECTION
   ============================================================ */
.tiktok-section {
  background: linear-gradient(180deg, var(--black) 0%, #0a0208 100%);
}

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

.tiktok-card {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tiktok-card:hover {
  border-color: rgba(255,64,129,0.3);
  box-shadow: 0 10px 40px rgba(255,64,129,0.1);
}

.tiktok-placeholder {
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tiktok-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.tiktok-placeholder p {
  color: var(--gray-muted);
  font-size: 0.9rem;
}

.tiktok-placeholder small {
  color: rgba(153,153,153,0.6);
  font-size: 0.75rem;
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.music-section {
  background: var(--black);
}

.music-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.music-player-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(255, 64, 129, 0.1);
}

.music-tracks-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.music-track-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.music-track-label {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--pink-soft);
  margin-bottom: 12px;
  text-align: center;
}

/* PROFILE CATS ROW */
.profile-cats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.cat-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-hot);
  box-shadow: 0 0 16px rgba(255, 64, 129, 0.4);
  transition: var(--transition);
}

.cat-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(255, 64, 129, 0.7);
}

.cat-heart {
  font-size: 1.4rem;
  animation: pulse 2s ease-in-out infinite;
}

.music-placeholder {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.music-placeholder-icon {
  font-size: 4rem;
  animation: pulse 2s ease-in-out infinite;
}

.music-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--pink-light);
}

.music-placeholder p {
  color: var(--gray-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   GAME / QUIZ SECTION
   ============================================================ */
.game-section {
  background: linear-gradient(180deg, var(--black) 0%, #0d0510 100%);
}

.game-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.quiz-card {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.quiz-progress {
  font-size: 0.8rem;
  color: var(--pink-hot);
  text-align: right;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.quiz-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  padding: 14px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.quiz-option:hover:not(:disabled) {
  border-color: var(--pink-hot);
  background: rgba(255,64,129,0.08);
  transform: translateX(6px);
}

.quiz-option.correct {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.15);
  color: #81C784;
}

.quiz-option.wrong {
  border-color: var(--pink-deep);
  background: rgba(233, 30, 140, 0.1);
  color: var(--pink-soft);
}

.quiz-option:disabled {
  cursor: not-allowed;
}

.quiz-feedback {
  margin-top: 20px;
  min-height: 40px;
  font-family: var(--font-script);
  font-size: 1.2rem;
  text-align: center;
  color: var(--pink-light);
}

.quiz-result {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.result-icon {
  font-size: 5rem;
}

.quiz-result h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink-light);
}

.quiz-result p {
  color: var(--gray-muted);
  font-size: 1rem;
}

/* ============================================================
   PROMISE SECTION
   ============================================================ */
.promise-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(255,64,129,0.12) 0%, transparent 60%),
    var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promise-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff4081' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.promise-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.promise-icon {
  font-size: 4rem;
  animation: floatHeart 3s ease-in-out infinite;
}

.promise-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, var(--pink-light), var(--pink-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promise-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promise-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}

.promise-sig {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--pink-light);
  line-height: 1.6;
}

.fireworks-btn {
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-deep), var(--rose-dark));
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-pink);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fireworks-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 80px rgba(255, 64, 129, 0.6);
}

/* ============================================================
   FIREWORKS CANVAS
   ============================================================ */
#fireworks-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer p {
  color: var(--gray-muted);
  font-size: 0.9rem;
}

.footer-sub {
  font-family: var(--font-script);
  font-size: 1.1rem !important;
  color: var(--pink-soft) !important;
}

/* ============================================================
   FLOATING NAV
   ============================================================ */
.floating-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.floating-nav.visible {
  opacity: 1;
  pointer-events: all;
}

.floating-nav a {
  width: 42px;
  height: 42px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
}

.floating-nav a:hover {
  background: rgba(255,64,129,0.2);
  border-color: var(--pink-hot);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(255,64,129,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 70px 16px;
  }

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

  .card-big, .card-wide {
    grid-column: span 1;
  }

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

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

  .counter-item {
    min-width: 60px;
    padding: 12px 14px;
  }

  .letter-body {
    padding: 28px 20px;
  }

  .floating-nav {
    right: 10px;
  }

  .floating-nav a {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

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

  .counter-wrap {
    gap: 4px;
  }

  .counter-dot {
    font-size: 1.4rem;
  }
}

/* ============================================================
   SCROLLBAR CUSTOM
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--pink-deep);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-hot);
}
