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

:root {
  --pink: #f8a5c2;
  --pink-dark: #e77f9a;
  --pink-light: #fff5f7;
  --pink-glow: rgba(248, 165, 194, 0.4);
  --white: #ffffff;
  --gold: #d4af37;
  --gold-light: rgba(212, 175, 55, 0.15);
  --text-dark: #4a4a4a;
  --text-light: #8a8a8a;
  --shadow: 0 4px 20px rgba(248, 165, 194, 0.2);
  --shadow-strong: 0 8px 40px rgba(248, 165, 194, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --gradient: linear-gradient(135deg, var(--pink), var(--pink-dark));
  --gradient-light: linear-gradient(135deg, var(--pink-light), #ffe8ee);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--pink-light);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

/* ============= HEADER ============= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--pink);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(248, 165, 194, 0.1);
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--pink-dark);
  background: var(--pink-light);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 60%;
}

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

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--pink-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(248, 165, 194, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(248, 165, 194, 0.08) 0%, transparent 50%);
  animation: heroShift 20s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-5%, 5%); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--pink-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-names {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 6rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
}

.hero-heart {
  display: inline-block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  -webkit-text-fill-color: initial;
  color: var(--pink);
  animation: heartBeat 1.5s ease-in-out infinite;
  margin: 0 10px;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.2); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
}

.hero-ampersand {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gold);
  -webkit-text-fill-color: initial;
  margin: 0 5px;
}

.hero-quote {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 25px auto 40px;
  font-style: italic;
  line-height: 1.8;
  min-height: 60px;
}

.hero-quote .quote-text {
  transition: opacity 0.5s ease;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px var(--pink-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--pink-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}

.btn-secondary:hover {
  background: var(--pink-light);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9a227);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* ============= FLOATING HEARTS ============= */
.hearts-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.heart-particle {
  position: absolute;
  bottom: -30px;
  font-size: 16px;
  animation: floatUp linear infinite;
  opacity: 0.6;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-110vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

/* ============= PAGE HEADER ============= */
.page-header {
  padding: 100px 20px 40px;
  text-align: center;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--pink-dark);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.page-header .page-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

/* ============= SECTION ============= */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* ============= COUNTER PAGE ============= */
.counter-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gradient-light);
}

.counter-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.counter-label {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}

.counter-date-label {
  color: var(--pink-dark);
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.counter-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 25px 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 120px;
  transition: var(--transition);
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-weight: 700;
}

.counter-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 600;
}

.counter-message {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
  text-align: center;
  max-width: 500px;
  line-height: 1.8;
}

/* ============= REASONS PAGE ============= */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.reason-card {
  perspective: 1000px;
  height: 200px;
  cursor: pointer;
}

.reason-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.reason-card.flipped .reason-card-inner {
  transform: rotateY(180deg);
}

.reason-card-front,
.reason-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
}

.reason-card-front {
  background: var(--white);
  border: 2px solid var(--pink);
  box-shadow: var(--shadow);
}

.reason-card-front .reason-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}

.reason-card-front .reason-hint {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.reason-card-front .reason-click {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 10px;
  opacity: 0.7;
}

.reason-card-back {
  background: var(--gradient);
  color: white;
  transform: rotateY(180deg);
  box-shadow: var(--shadow-strong);
}

.reason-card-back .reason-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.reason-card-back .reason-text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ============= MUSIC PAGE ============= */
.music-player-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  padding: 30px;
}

.music-current {
  text-align: center;
  margin-bottom: 30px;
}

.music-cover {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: 0 10px 40px var(--pink-glow);
  position: relative;
  overflow: hidden;
}

.music-cover::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.music-cover.playing {
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.music-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.music-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.music-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:hover {
  background: var(--pink);
  color: white;
  transform: scale(1.1);
}

.music-btn.play-btn {
  width: 65px;
  height: 65px;
  background: var(--gradient);
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px var(--pink-glow);
}

.music-btn.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px var(--pink-glow);
}

.music-progress {
  width: 100%;
  height: 5px;
  background: var(--pink-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
  cursor: pointer;
}

.music-progress-bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 5px;
  width: 0%;
  transition: width 0.3s ease;
}

.music-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.music-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 20px;
}

.music-visualizer .bar {
  width: 6px;
  background: var(--gradient);
  border-radius: 3px;
  height: 5px;
  transition: height 0.2s ease;
}

.music-visualizer.active .bar {
  animation: visualizerWave 1.2s ease-in-out infinite alternate;
}

.music-visualizer.active .bar:nth-child(1) { animation-delay: 0s; }
.music-visualizer.active .bar:nth-child(2) { animation-delay: 0.1s; }
.music-visualizer.active .bar:nth-child(3) { animation-delay: 0.2s; }
.music-visualizer.active .bar:nth-child(4) { animation-delay: 0.3s; }
.music-visualizer.active .bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes visualizerWave {
  0% { height: 5px; }
  100% { height: 40px; }
}

.music-playlist {
  list-style: none;
  border-top: 1px solid var(--pink-light);
  padding-top: 15px;
}

.music-playlist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.music-playlist li:hover {
  background: var(--pink-light);
}

.music-playlist li.active {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 600;
}

.music-playlist li .playlist-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.music-playlist li.active .playlist-num {
  background: var(--gradient);
  color: white;
}

.music-playlist li .playlist-info {
  flex: 1;
}

.music-playlist li .playlist-info strong {
  display: block;
  font-size: 0.9rem;
}

.music-playlist li .playlist-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.music-playlist li .playlist-duration {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============= MOVIES PAGE ============= */
.movies-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.movies-random-pick {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  border: 2px dashed var(--pink);
  display: none;
}

.movies-random-pick.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.movies-random-pick .random-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.movies-random-pick h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.movies-random-pick p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.movies-random-pick .random-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--pink-light);
  color: var(--pink-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.movie-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.movie-card-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.movie-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.movie-card-body {
  padding: 18px;
}

.movie-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.movie-card-body .movie-year {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.movie-card-body .movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.movie-card-body .movie-tags span {
  padding: 2px 10px;
  background: var(--pink-light);
  color: var(--pink-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

.movie-card-body .movie-watched {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
}

.movie-card-body .movie-watched input[type="checkbox"] {
  accent-color: var(--pink);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.movie-card-body .movie-watched.watched {
  color: var(--pink-dark);
  font-weight: 600;
}

/* ============= CALENDAR PAGE ============= */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.calendar-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.calendar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.calendar-card-header {
  padding: 25px 20px 15px;
  text-align: center;
  position: relative;
}

.calendar-card-header .calendar-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}

.calendar-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
}

.calendar-card-header .calendar-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.calendar-card-body {
  padding: 10px 20px 25px;
  text-align: center;
}

.calendar-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.calendar-countdown .cd-item {
  text-align: center;
}

.calendar-countdown .cd-item .cd-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
}

.calendar-countdown .cd-item .cd-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.calendar-card.past .calendar-card-header {
  opacity: 0.6;
}

.calendar-card.past .calendar-countdown .cd-item .cd-num {
  background: var(--text-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============= QUIZ PAGE ============= */
.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

.quiz-progress {
  margin-bottom: 30px;
}

.quiz-progress-bar {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.quiz-progress-bar .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 2px solid var(--pink);
  transition: var(--transition);
}

.quiz-progress-bar .dot.active {
  background: var(--pink);
  transform: scale(1.2);
}

.quiz-progress-bar .dot.answered {
  background: var(--gradient);
  border-color: var(--pink-dark);
}

.quiz-question {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.quiz-question-number {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.quiz-question h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.quiz-option {
  padding: 15px 20px;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  background: var(--pink-light);
  color: var(--text-dark);
  text-align: left;
  font-family: var(--font-body);
}

.quiz-option:hover {
  border-color: var(--pink);
  background: white;
}

.quiz-option.selected {
  border-color: var(--pink-dark);
  background: white;
  color: var(--pink-dark);
  font-weight: 600;
  box-shadow: 0 0 0 3px var(--pink-glow);
}

.quiz-option.correct {
  border-color: #4caf50;
  background: #e8f5e9;
  color: #2e7d32;
}

.quiz-option.wrong {
  border-color: #f44336;
  background: #ffebee;
  color: #c62828;
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.quiz-navigation .btn {
  font-size: 0.85rem;
  padding: 12px 28px;
}

.quiz-results {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.quiz-results.show {
  display: block;
  animation: fadeIn 0.6s ease;
}

.quiz-results .result-icon {
  font-size: 5rem;
  margin-bottom: 15px;
}

.quiz-results h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.quiz-results .result-score {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.quiz-results .result-message {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.quiz-results .result-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.quiz-results .result-details .rd-item {
  text-align: center;
}

.quiz-results .result-details .rd-item .rd-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-dark);
}

.quiz-results .result-details .rd-item .rd-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============= GAME IMAGE ============= */
.juego-header-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-sm);
  display: block;
  margin: 0 auto 15px;
  box-shadow: var(--shadow);
}

.juego-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--white);
  border-top: 2px solid var(--pink-light);
  padding: 30px 20px;
  text-align: center;
}

.footer-quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--pink-dark);
  margin-bottom: 10px;
}

.footer-hearts {
  color: var(--pink);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 968px) {
  .header {
    padding: 0 20px;
  }

  .header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header-nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .counter-item {
    min-width: 80px;
    padding: 15px 20px;
  }

  .counter-grid {
    gap: 12px;
  }

  .reason-card {
    height: 180px;
  }

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

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

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

  .quiz-question {
    padding: 20px;
  }

  .music-player-wrapper {
    padding: 20px;
  }

  .music-cover {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }
}

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

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes floatHeart {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-150px) scale(0.3); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-scale {
  animation: fadeInScale 0.5s ease forwards;
}

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

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

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

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