:root {
  --bg-main: #050814;
  --bg-card: #141824;
  --bg-card-soft: #1b1f2e;
  --accent: #1ed760;
  --accent-soft: #23f18d;
  --text-primary: #ffffff;
  --text-secondary: #a8b0c5;
  --wrapped-pink: #ff3377;
  --wrapped-red: #ff4b2b;
  --shadow-soft: 0 20px 35px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.2s ease-out;
  --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at top, #232946 0, #050814 55%);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 16px 60px;
}

/* ====== CARDS ====== */

.card {
  background: linear-gradient(180deg, #161b2b 0%, #050814 100%);
  border-radius: 24px;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);

  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp var(--transition-slow) forwards;
}

.card:nth-child(1) { animation-delay: 0.12s; }
.card:nth-child(2) { animation-delay: 0.20s; }
.card:nth-child(3) { animation-delay: 0.28s; }
.card:nth-child(4) { animation-delay: 0.36s; }
.card:nth-child(5) { animation-delay: 0.44s; }
.card:nth-child(6) { animation-delay: 0.52s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   PLAYER ESTILO SPOTIFY FULL
============================ */

.player-card {
  padding-top: 18px;
}

/* Header "Nosso Wrapped" */
.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.page-title {
  font-weight: 600;
}

.menu-dots {
  letter-spacing: 2px;
}
/* ===============================
   CARTA ROMÂNTICA — ESTILO PREMIUM
================================= */

.love-letter-section {
    text-align: center;
    margin-top: 20px;
}

/* Botão inicial */
.open-letter-btn {
    background: linear-gradient(120deg, #ff8bb4, #ff74a8);
    padding: 12px 26px;
    border-radius: 999px;
    border: none;
    color: #2a0a18;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0px 8px 25px rgba(255, 100, 160, 0.45);
    transition: .25s;
    margin-bottom: 20px;
}

.open-letter-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Container da carta (fica invisível até abrir) */
.love-letter-container {
    display: none;
    margin-top: 10px;
    animation: fadeIn .7s ease forwards;
}

/* Papel da carta */
.love-paper {
    background: #ffffff;
    padding: 35px 26px;
    border-radius: 22px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.20);
    position: relative;
    overflow: hidden;

    /* textura suave de papel */
    background-image: url("https://www.transparenttextures.com/patterns/paper.png");
    background-size: 250px;

    /* Animação de abertura */
    transform: scale(0.92) translateY(12px) rotate(-1deg);
    opacity: 0;
    animation: openLetter .8s ease forwards;
}

/* Foto central */
.letter-photo img {
    width: 130px;
    height: 130px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0px 12px 35px rgba(0,0,0,0.25);
}

/* Texto principal */
.letter-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
    line-height: 1.55;
    margin-bottom: 12px;
    padding: 0 10px;
}

/* Assinatura */
.letter-sign {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* Confete sutil */
.love-confetti {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    opacity: 0;
    animation: floatUp .9s ease-out forwards;
}

/* ===== ANIMAÇÕES ===== */

@keyframes openLetter {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px) rotate(-2deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.03) translateY(0) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes floatUp {
    0% { transform: translateY(20px); opacity: 0.9; }
    100% { transform: translateY(-60px); opacity: 0; }
}

/* ==============================
   CARTA ROMÂNTICA — VISUAL
============================== */

.love-letter-card {
    padding: 25px 20px;
    text-align: center;
}

/* Botão rosinha romântico */

.love-letter-button {
    padding: 12px 22px;
    background: linear-gradient(135deg, #ff86b6, #ff6fa3);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    color: #2b0d19;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(255, 120, 170, 0.35);
    transition: 0.25s ease;
    margin-bottom: 20px;
}

.love-letter-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 32px rgba(255, 120, 170, 0.45);
}

/* Carta antes de abrir */

.love-letter-panel {
    display: none;
    margin-top: 10px;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Papel da carta (efeito realista) */

.love-paper {
    background: #fff;
    padding: 26px 20px;
    border-radius: 18px;
    text-align: center;
    width: 90%;
    max-width: 370px;
    margin: 0 auto;

    /* textura suave */
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    border: 1px solid rgba(0,0,0,0.08);

    /* efeito de “papel levantando” */
    transform-origin: top center;
    transform: rotateX(65deg);
    opacity: 0;
    animation: openPaper 0.7s ease forwards;
}

@keyframes openPaper {
    from {
        transform: rotateX(65deg);
        opacity: 0;
    }
    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

/* Foto */

.love-photo img {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Texto */

.love-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    padding: 0 10px;
    line-height: 1.45;
}

.love-sign {
    color: #777;
    font-size: 0.95rem;
}

/* Confete suave */

.love-confetti {
    position: fixed;
    width: 6px;
    height: 6px;
    background: pink;
    border-radius: 50%;
    animation: confettiUp 1.4s ease-out forwards;
    pointer-events: none;
}

@keyframes confettiUp {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-120px) rotate(140deg); opacity: 0; }
}


/* Assinatura */
.love-letter-sign {
  color: #754256;
  font-size: 0.95rem;
}

/* Confetes da carta romântica */
.romantic-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: romanticFloat 1.5s ease-out forwards;
  z-index: 9999;
}

@keyframes romanticFloat {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to   { transform: translateY(-120px) scale(0.4); opacity: 0; }
}


/* CAPA GRANDE */
.cover-wrapper {
  margin-bottom: 22px;
}

/* === CAPA DO PLAYER === */
.cover-photo {
    width: 100%;
    height: 340px; /* Ajusta o tamanho que tu quiser */
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080c17; 
}

.cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* 🔥 Faz a imagem cobrir proporcionalmente */
    object-position: center center; /* 🔥 Mantém o centro da foto */
    border-radius: 22px;
    display: block;
}


/* TÍTULO + ARTISTA */
.player-info {
    margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.track-info h1,
.track-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.track-artist {
  display: block;
  font-size: 0.85rem;
  color: #aeb6d5;
  margin-top: 2px;
}

/* CORAÇÃO (igual vibe Spotify) */
.favorite-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease-out;
}

.favorite-btn:hover {
  transform: scale(1.1);
}

.favorite-btn.active {
  color: #1ed760;
  transform: scale(1.12);
}

/* BARRA DE PROGRESSO */
.player-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.time {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Range customizado estilo Spotify (Chrome) */
#progressBar {
  width: 100%;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

/* trilho */
#progressBar::-webkit-slider-runnable-track {
  height: 4px;
  background: #2b3044;
  border-radius: 999px;
}

/* bolinha */
#progressBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1ed760;
  box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.25);
  margin-top: -5px;
}

/* fallback geral */
#progressBar {
  accent-color: #1ed760;
}

/* CONTROLES */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 4px;
}

.control-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.18s ease-out;
}

.control-btn.small {
  font-size: 1.05rem;
}

.control-btn:hover {
  color: #ffffff;
  transform: scale(1.06);
}

/* PLAY CENTRAL IGUAL SPOTIFY */
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #000;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease;
}

.play-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.7);
}

/* Quando você quiser, pode usar essa classe "playing" no JS */
.play-btn.playing {
  background: #1ed760;
  color: #000;
}

/* DICA EMBAIXO */
.hint-text {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}



/* ====== SOBRE O CASAL ====== */

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.counter-item {
  text-align: center;
  background: var(--bg-card-soft);
  padding: 12px 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.counter-item span {
  font-size: 1.2rem;
  font-weight: 700;
}

/* ====== INTRO WRAPPED ====== */

.wrapped-intro {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 12px;
  align-items: center;
}

@media (max-width: 480px) {
  .wrapped-intro { grid-template-columns: 1fr; }
}

.wrapped-art {
    
  background: #000;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}

/* fitas animadas */
.wrapped-ribbon {
  position: absolute;
  width: 160%;
  height: 45%;
  opacity: 0.75;
  animation: ribbonFloat 6s infinite alternate;
  filter: blur(0.4px);
}

.ribbon-1 {
  top: 18%;
  background: linear-gradient(90deg, var(--wrapped-pink), var(--wrapped-red), var(--accent));
}

.ribbon-2 {
  bottom: 10%;
  background: linear-gradient(90deg, var(--accent), var(--wrapped-red), var(--wrapped-pink));
}

@keyframes ribbonFloat {
  from { transform: translateY(-6px) rotate(-10deg); }
  to   { transform: translateY(6px) rotate(-10deg); }
}

.tagline {
  color: var(--accent-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}



.primary-btn {
  background: var(--accent);
  color: #000;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  margin-top: 8px;
}

/* ====== MOMENTOS ====== */

.moment-item {
  background: radial-gradient(circle at top left, #232842 0, #050814 65%);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 480px) {
  .moment-item { grid-template-columns: 1fr; }
}

.moment-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ====== GALERIA ====== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #101522;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== MENSAGEM ====== */

.message-box {
  background: linear-gradient(145deg, #191f32, #090c16);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  min-height: 140px;
  font-size: 0.9rem;
}

/* ================================
   POPUP ORIGINAL SIMPLES
================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 9999;
  animation: popupFade 0.4s ease-out;
}

@keyframes popupFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-box {
  background: linear-gradient(180deg, #20263d 0%, #0d101c 70%);
  padding: 26px 22px;
  border-radius: 20px;
  text-align: center;
  width: 85%;
  max-width: 360px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: popupSlide 0.5s ease-out;
}

@keyframes popupSlide {
  from { 
    opacity: 0; 
    transform: translateY(20px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

.album-cover {
    width: 100%;
    height: 100px;        /* ajuste o tamanho que quiser */
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f1a;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* garante o zoom certo */
    object-position: center; /* centraliza perfeitamente */
}


/* ======== TÍTULOS DAS SEÇÕES ======== */

section.card h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;     /* Aumenta o espaço abaixo do título */
    padding-bottom: 5px;      /* Suave, cria mais “respiro” */
    line-height: 1.3;
}

/* Subtítulos (parágrafos abaixo do h2) */
section.card > p {
    margin-bottom: 25px;      /* espaço maior para separar do conteúdo abaixo */
    line-height: 1.5;
}

/* ======== MOMENTOS DO CASAL ======== */

.moments-card h2 {
    margin-bottom: 22px !important;
}

.moments-card > p {
    margin-bottom: 28px !important;
}

/* Para afastar cada bloco de momento */
.moment-item {
    margin-bottom: 25px;
}

/* ======== GALERIA ======== */

.gallery-card h2 {
    margin-bottom: 25px !important;
}

.gallery-grid {
    margin-top: 5px; /* Dá leve “respiro” entre o título e as fotos */
}

/* Caso queira ainda mais destaque */
.gallery-card h2 {
    letter-spacing: 0.5px;
}


/* =====================================
   AJUSTES — Seção Nossos Momentos
===================================== */


.moment-section {
    padding: 28px 22px;
}

.moment-section h2 {
    font-size: 1.7rem;
    margin-bottom: 6px; /* título */
    letter-spacing: 0.2px;
}

.moment-section p.section-subtitle {
    font-size: 1rem;
    color: #b8c2d8;
    margin-bottom: 26px; /* MAIS ESPAÇO ENTRE TÍTULO → LISTA */
}

/* Cada cartão */
.moment-item {
    display: flex;
    gap: 18px;                    /* Aumenta espaço entre imagem e texto */
    padding: 18px;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Imagem */
.moment-image img {
    width: 115px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

/* Título do momento */
.moment-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;         /* MAIS espaço do título para o texto */
    font-weight: 600;
    line-height: 1.3;
}

/* Texto */
.moment-content p {
    font-size: 0.98rem;
    color: #ccd3e6;
    line-height: 1.35;
}


.moment-section h2 {
    font-size: 1.6rem;
    margin-bottom: 14px; /* Aumentei bastante */
}

.moment-section p {
    font-size: 0.98rem;
    color: #b6bedb;
    margin-bottom: 26px; /* Mais espaço da descrição para a lista */
}


.popup-box h2 {
    margin-top: 20px;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
}

.popup-box p {
  font-size: 1rem;
  color: #d0d6f8;
  margin-bottom: 20px;
  line-height: 1.45;
}

#startExperience {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: #1ed760;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 10px 22px rgba(30, 215, 96, 0.35);
}

#startExperience:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}


/* ====== EFEITOS DO FUNDO ====== */

#globalFireworks {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.spark {
  position: fixed;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  animation: sparkle 2s infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0% { opacity: 0.3; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.3; transform: scale(0.6); }
}


/* ============================
   FIM DA RETROSPECTIVA
============================ */

.end-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.end-box {
    width: 90%;
    max-width: 540px;
    background: linear-gradient(160deg, #1b2033 0%, #0d101c 90%);
    padding: 35px 30px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

/* Ícone suave */
.end-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Título */
.end-box h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* Frase final */
.end-box p {
    font-size: 1rem;
    color: #cbd3ee;
    margin-bottom: 20px;
}

/* Botão */
.back-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #1ed760;
    color: #000;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.2s;
}

.back-btn:hover {
    background: #1be868;
    transform: scale(1.04);
}

/* Efeito de brilho sutil */
.end-box::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.14), transparent 70%);
    filter: blur(30px);
}

/* ============================================================
   CARTÃO FINAL — EFEITO DE PAPEL QUE ABRE
============================================================ */

.final-card-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

#birthdayCard {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
}

#birthdayClosed {
    background: linear-gradient(145deg, #171b2a, #0c0f1a);
    padding: 22px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.09);
    cursor: pointer;
    transition: 0.25s ease-out;
    box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

#birthdayClosed:hover {
    transform: translateY(-4px);
    filter: brightness(1.12);
}

/* Cartão aberto */
#birthdayOpen {
    display: none;
    background: linear-gradient(160deg, #1c2236 0%, #0b0f1a 90%);
    padding: 22px 20px 26px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 34px rgba(0,0,0,0.55);
    transform-origin: left center;
    overflow: hidden;
    position: relative;
}

/* Dobra lateral simulando papel */
#birthdayOpen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.05),
        transparent 45%,
        rgba(0,0,0,0.25)
    );
    opacity: 0.28;
    mix-blend-mode: screen;
    pointer-events: none;
}

.birthday-photo {
    width: 165px;
    height: 165px;
    margin: 0 auto 16px;
    border-radius: 22px;
    overflow: hidden;

    /* fundo suave para quando a imagem não preencher tudo */
    background: linear-gradient(145deg, #f5f5f5, #eaeaea);

    padding: 6px; /* cria moldura bonita */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.birthday-photo img {
    width: 100%;
    height: 100%;

    /* ❗ Mostra a imagem completa sem cortar */
    object-fit: contain;

    object-position: center;
    border-radius: 18px;
}


/* Texto */
.birthday-quote {
    font-size: 1rem;
    color: #e8ecff;
    margin-bottom: 6px;
}

.birthday-sign {
    font-size: 0.9rem;
    color: #b8bed8;
}

/* CONFETES DO CARTÃO */
.confetti-dot {
    position: absolute;
    width: 6px;
    height: 10px;
    border-radius: 999px;
    animation: confettiUp 1.3s ease-out forwards;
    opacity: 0.9;
}

@keyframes confettiUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) rotate(220deg);
        opacity: 0;
    }
}


/* ------------------------------
   PLAYER — BOTÕES PREMIUM
------------------------------- */

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 15px;
}

/* Botões pequenos */
.control-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.06);
    color: #d6daf1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: 0.22s ease;
    backdrop-filter: blur(4px);
}

.control-btn:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px) scale(1.05);
}

.control-btn:active {
    transform: scale(0.95);
    background: rgba(255,255,255,0.20);
}

/* Botão de play — premium */
.play-btn {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e7e7e7);
    color: #000;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(30, 215, 96, 0.2);
    cursor: pointer;
    transition: 0.25s ease;
}

.play-btn:hover {
    transform: scale(1.07);
    box-shadow:
        0 8px 22px rgba(0,0,0,0.55),
        0 0 28px rgba(30, 215, 96, 0.35);
}

.play-btn.playing {
    background: linear-gradient(135deg, #1ed760, #13c54b);
    color: #000;
}

/* ===============================  
   BOTÕES MODERNOS DO PLAYER  
================================ */

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 20px;
    margin-bottom: 8px;
}

/* Botões menores — estilo "glass button" */
.control-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: #dce1f7;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.control-icon:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

.control-icon:active {
    transform: scale(0.94);
    background: rgba(255,255,255,0.15);
}

/* Botão principal — Play / Pause */
.play-main-btn {
    width: 78px;
    height: 78px;
    border-radius: 32px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border: none;
    color: #000;
    font-size: 1.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(255,255,255,0.35),
        0 16px 30px rgba(0,0,0,0.35);
    transition: 0.25s ease;
}

.play-main-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 26px rgba(255,255,255,0.45),
        0 18px 34px rgba(0,0,0,0.5);
}

.play-main-btn:active {
    transform: scale(0.97);
    background: #e8e8e8;
}

