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

:root {
  --bg: #000;
  --surface: #0e0e0e;
  --card: #111;
  --gold: #cfae61; /* MUDADO */
  --gold-soft: #cfae61; /* MUDADO */
  --text: #fff;
  --muted: #b7b7b7;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* ===== HEADER & NAV ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(207, 174, 97, 0.2); /* MUDADO */
  padding: 20px 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 300px;
  height: 300px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000;
  border-color: var(--gold-soft);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector-header {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.lang-btn-header {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lang-btn-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
  border-radius: 8px;
}

.lang-btn-header:hover::before,
.lang-btn-header.active::before {
  width: 100%;
  height: 100%;
}

.lang-btn-header:hover,
.lang-btn-header.active {
  color: #000;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(207, 174, 97, 0.2); /* MUDADO */
  margin-top: 60px;
}

.page-intro .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

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

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

/* ===== INTRO PAGE ===== */
.page-intro {
  height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.88)),
    url('https://64.media.tumblr.com/d5d36ca08510685e8e0bf2760b5004d6/cc7461c9e8757d45-a1/s640x960/6b36bc2d633202bbea0c455f66f0b3c6e6ec5b1e.jpg') center center / cover no-repeat;
  filter: brightness(0.8);
  animation: zoomSlow 22s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 600px at 60% -10%, rgba(207,174,97,.08), transparent 60%); /* MUDADO */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeIn 2s ease forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold-soft);
  text-shadow: 0 0 22px rgba(226,201,118,.45);
  margin: 0 0 12px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  color: #e7ddbb;
  font-size: 1.2rem;
  margin-bottom: 26px;
}

.hero-disclaimer {
  font-family: 'Playfair Display', serif;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-top: 28px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(226,201,118,.3);
}

.cta-button {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold-soft);
  color: var(--gold-soft);
  border-radius: 40px;
  padding: 14px 36px;
  font-size: 1rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: all .35s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 14px rgba(207,174,97,0.15);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(180deg, #e3b85e 0%, #b07d2f 100%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 40px;
  z-index: -1;
}

.cta-button:hover::before {
  width: 110%;
  height: 300%;
}

.cta-button:hover {
  color: #000;
  box-shadow: 0 0 22px rgba(227,184,94,0.7);
}

/* ===== EXPERIENCE PAGE ===== */
.page-experience {
  background: #000;
  min-height: 100vh;
}

.experience-simple {
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease forwards;
}

.experience-simple-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3rem;
  color: #cfae61; /* MUDADO */
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(207, 174, 97, 0.3); /* MUDADO */
  animation: fadeUp 1s ease forwards;
}

.experience-simple-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1.2s ease forwards;
}

.experience-simple-text strong {
  color: #cfae61; /* MUDADO */
}

.experience-simple-btn {
  display: inline-block;
  padding: 15px 50px;
  background: transparent;
  border: 2px solid #cfae61;
  border-radius: 50px;
  color: #cfae61;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(207,174,97,0.15), inset 0 0 18px rgba(255,255,255,0.05);
}

.experience-simple-btn:hover {
  background: linear-gradient(180deg, #e3b85e 0%, #b07d2f 100%);
  color: #000;
  box-shadow: 0 0 22px rgba(227,184,94,0.7), 0 0 36px rgba(227,184,94,0.25);
  transform: scale(1.04);
}

.experience-simple-disclaimer {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #cfae61; /* MUDADO */
  margin-top: 30px;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* ===== ROMANCES PAGE ===== */
.romances-main {
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
}

.romances-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.8em;
  color: #cfae61; /* MUDADO */
  text-shadow: 0 0 25px rgba(207, 174, 97, 0.45); /* MUDADO */
  margin-bottom: 20px;
}

.romances-intro {
  font-family: 'Playfair Display', serif;
  color: #cfae61;
  font-style: italic;
  font-size: 1.1em;
  margin-bottom: 50px;
  line-height: 1.6;
}

.romances-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.romance-card {
  position: relative;
  width: 220px;
  height: 220px;
  border: 1px solid #cfae61; /* MUDADO */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
}

.romance-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(207, 174, 97, 0.35); /* MUDADO */
}

.romance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.romance-card:hover img {
  filter: brightness(1.2) contrast(1.05);
}

.romance-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #cfae61; /* MUDADO */
  font-family: 'Playfair Display', serif;
  font-size: 1em;
  padding: 12px 0;
  font-style: italic;
}

.back-btn-romance {
  display: inline-block;
  margin-top: 40px;
  background: linear-gradient(90deg, #cfae61, #b88a2a); /* MUDADO */
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn-romance:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(207,174,97,0.55); /* MUDADO */
}

/* ===== SYNOPSIS BOX (Romances) ===== */
.synopsis-box {
  max-width: 760px;
  margin: 50px auto 10px;
  padding: 26px 30px 32px;
  border: 1px solid #cfae61;
  border-radius: 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 24px rgba(207, 174, 97, 0.18);
}

.synopsis-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.synopsis-box p {
  margin: 0 0 24px;
  color: #fff;
  text-align: center;
}

.romance-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.romance-action-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #cfae61;
  color: #cfae61;
  border-radius: 40px;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: 0 0 14px rgba(207, 174, 97, 0.15);
  text-decoration: none;
  cursor: pointer;
}

.romance-action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(180deg, #e3b85e 0%, #b07d2f 100%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 40px;
  z-index: -1;
}

.romance-action-btn:hover::before {
  width: 110%;
  height: 300%;
}

.romance-action-btn:hover {
  color: #000;
  box-shadow: 0 0 22px rgba(227, 184, 94, 0.7);
  transform: translateY(-3px);
}

.romance-card.active-card {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(207, 174, 97, 0.5);
  border: 2px solid #cfae61;
}

/* ===== BEHIND THE SCENES PAGE ===== */
.bts-main {
  padding: 100px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
}

.bts-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.8em;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.bts-intro {
  font-family: 'Montserrat', sans-serif;
  color: #ccc;
  font-size: 1.05em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.bts-content {
  display: none;
  margin-top: 60px;
}

.bts-content.active {
  display: block;
}

.bts-section {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(80, 80, 80, 0.3);
  border-radius: 16px;
  padding: 35px 28px;
  margin: 25px auto;
  max-width: 700px;
  transition: all 0.3s ease;
}

.bts-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 100, 100, 0.15);
  border-color: rgba(120, 120, 120, 0.4);
}

.bts-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.bts-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 12px;
  text-transform: none;
  font-style: normal;
}

.bts-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0b0;
}

.bts-cta {
  margin-top: 60px;
}

.bts-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #cfae61;
  color: #cfae61;
  border-radius: 40px;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: 0 0 14px rgba(207, 174, 97, 0.15);
}

.bts-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(180deg, #e3b85e 0%, #b07d2f 100%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 40px;
  z-index: -1;
}

.bts-btn:hover::before {
  width: 110%;
  height: 300%;
}

.bts-btn:hover {
  color: #000;
  box-shadow: 0 0 22px rgba(227, 184, 94, 0.7);
  transform: translateY(-3px);
}

/* ===== SERIES PAGES ===== */
.series-main {
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
}

.series-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.8em;
  color: #cfae61; /* MUDADO */
  margin-bottom: 10px;
}

.series-subtitle {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 40px;
}

.series-btn-back {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #cfae61; /* MUDADO */
  border-radius: 50px;
  color: #cfae61; /* MUDADO */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.series-btn-back::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #cfae61; /* MUDADO */
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 50px;
  z-index: -1;
}

.series-btn-back:hover::before {
  width: 110%;
  height: 300%;
}

.series-btn-back:hover {
  color: #000;
  transform: translateY(-4px);
}

.episodes-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #cfae61; /* MUDADO */
  font-size: 1.8em;
  margin: 60px 0 40px;
}

.episode-placeholder {
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(207, 174, 97, 0.3); /* MUDADO */
  border-radius: 14px;
  padding: 60px 30px;
  margin: 30px auto;
  max-width: 600px;
}

.episode-placeholder p {
  color: #cfae61; /* MUDADO */
  font-size: 1.2em;
  margin: 10px 0;
}

.placeholder-note {
  font-size: 0.9em !important;
  color: #999 !important;
  font-style: italic;
}

/* ===== ABOUT PAGE ===== */
.about-main {
  padding: 120px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
}

.about-image img {
  max-width: 340px;
  width: 100%;
  margin: 0 auto 30px;
  border-radius: 16px;
  border: 1px solid rgba(207, 174, 97, 0.3); /* MUDADO */
  box-shadow: 0 0 25px rgba(207, 174, 97, 0.25); /* MUDADO */
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.4em;
  color: #cfae61; /* MUDADO */
  margin-bottom: 30px;
}

.about-lang-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.about-lang-btn {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-lang-btn:hover,
.about-lang-btn.active {
  background: #fff;
  transform: scale(1.08);
}

.about-content {
  display: none;
  max-width: 640px;
  margin: 0 auto;
}

.about-content.active {
  display: block;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.about-content p:first-child {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #cfae61; /* MUDADO */
  font-size: 1.15rem;
}

.about-content strong {
  color: #cfae61; /* MUDADO */
}

/* ===== MUSIC PLAYER ===== */
.music-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.music-btn {
  background: rgba(207, 174, 97, 0.2); /* MUDADO */
  backdrop-filter: blur(10px);
  border: 2px solid rgba(207, 174, 97, 0.5); /* MUDADO */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:hover {
  background: rgba(207, 174, 97, 0.4); /* MUDADO */
  transform: scale(1.1);
}

.music-icon {
  font-size: 1.5rem;
}

/* ===== COMMENTS SECTION (Cloudflare native) ===== */
.comments-section {
  max-width: 800px;
  margin: 80px auto 40px;
  padding: 40px 30px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(207, 174, 97, 0.2);
  border-radius: 16px;
}

.comments-section h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #cfae61;
  font-size: 1.8em;
  margin-bottom: 30px;
  text-align: center;
}

.comments-section iframe,
#cf-comments {
  width: 100%;
  border: none;
  border-radius: 8px;
  min-height: 400px;
}

/* Mobile */
@media (max-width: 768px) {
  .comments-section {
    padding: 30px 20px;
    margin: 60px 15px 30px;
  }
  
  .comments-section h2 {
    font-size: 1.5em;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Header */
  .top-bar {
    padding: 15px 0;
  }
  
  .nav-links {
    gap: 15px;
    padding: 0 10px;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  /* Language Selector */
  .language-selector-header {
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .lang-btn-header {
    padding: 5px 12px;
    font-size: 0.85rem;
  }

  /* Hero (Intro) */
  .hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-disclaimer {
    font-size: 0.9rem;
    margin-top: 20px;
  }
  
  .cta-button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  /* Experience */
  .experience-simple {
    padding: 100px 20px 60px;
  }
  
  .experience-simple-title {
    font-size: 2rem;
  }
  
  .experience-simple-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .experience-simple-btn {
    padding: 12px 36px;
    font-size: 1rem;
  }

  /* Romances */
  .romances-main {
    padding: 90px 15px 50px;
  }
  
  .romances-title {
    font-size: 2rem;
  }
  
  .romances-intro {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  
  .romances-gallery {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
  }
  
  .romance-card {
    width: 160px;
    height: 160px;
  }
  
  .romance-overlay {
    font-size: 0.85rem;
    padding: 10px 0;
  }
  
  .synopsis-box {
    padding: 20px 18px 24px;
    font-size: 0.9rem;
    margin: 40px 15px 10px;
  }
  
  .synopsis-box p {
    margin-bottom: 18px;
  }
  
  .romance-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .romance-action-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
    width: 100%;
  }

  /* Behind The Scenes */
  .bts-main {
    padding: 90px 15px 50px;
  }
  
  .bts-title {
    font-size: 2rem;
  }
  
  .bts-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .bts-section {
    padding: 25px 20px;
    margin: 20px auto;
  }
  
  .bts-icon {
    font-size: 2rem;
  }
  
  .bts-section h2 {
    font-size: 1.3em;
  }
  
  .bts-section p {
    font-size: 0.95rem;
  }
  
  .bts-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  /* About */
  .about-main {
    padding: 100px 15px 50px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-image img {
    max-width: 280px;
  }
  
  .about-content p {
    font-size: 0.95rem;
  }

  /* Series Pages */
  .series-main {
    padding: 90px 15px 50px;
  }
  
  .series-title {
    font-size: 2rem;
  }
  
  .series-subtitle {
    font-size: 0.9rem;
  }
  
  .episode-placeholder {
    padding: 40px 20px;
  }

  /* Music Player */
  .music-player {
    bottom: 20px;
    right: 20px;
  }
  
  .music-btn {
    width: 50px;
    height: 50px;
  }
  
  .music-icon {
    font-size: 1.2rem;
  }

  /* Footer */
  .site-footer {
    font-size: 0.8rem;
    padding: 20px 15px;
  }

  /* Comments Section */
  .comments-section {
    padding: 30px 20px;
    margin: 60px 15px 30px;
  }
  
  .comments-section h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .romances-gallery {
    grid-template-columns: 1fr;
  }
  
  .romance-card {
    width: 200px;
    height: 200px;
  }
  
  .nav-links {
    gap: 10px;
  }
  
  .nav-links a {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}