/* ===============================
   GOLDEN PHOENIX – FIXED LAYOUT
   =============================== */

.gp-root {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.gp-hero {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== GLASS CARD ===== */
.gp-card {
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 170, 90, 0.18);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255, 140, 60, 0.06);
}

/* ===== TITLE CARD ===== */
.gp-card-title {
  text-align: center;
}

.gp-card-title h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #f4d48f;
  text-shadow: 0 0 35px rgba(255, 150, 60, 0.45);
}

.gp-card-title p {
  margin: 0;
  font-size: 14px;
  color: rgba(235, 235, 235, 0.7);
}

/* ===== MAIN CARD ===== */
.gp-card-main h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3.2vw, 34px);
  color: #f3e6c4;
}

.gp-text {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(235, 235, 235, 0.85);
}

/* ===== ACTIONS ===== */
.gp-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.gp-btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gp-btn.primary {
  background: linear-gradient(180deg, #ffbf65, #ff8a1f);
  color: #1b0f05;
  box-shadow: 0 12px 30px rgba(255, 150, 50, 0.35);
}

.gp-btn.primary:hover {
  transform: translateY(-1px);
}

.gp-btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #f4d48f;
  border: 1px solid rgba(255, 190, 120, 0.25);
}

/* ===== TAGS ===== */
.gp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(240, 240, 240, 0.85);
  background: rgba(255, 170, 80, 0.12);
  border: 1px solid rgba(255, 170, 80, 0.18);
}

/* ===== CTA CARD ===== */
.gp-card-cta {
  text-align: center;
}

.gp-card-cta .cta-title {
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(235, 235, 235, 0.85);
}

.gp-btn.wide {
  width: 100%;
  margin-bottom: 12px;
}

.gp-card-cta small {
  font-size: 12px;
  color: rgba(220, 220, 220, 0.65);
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .gp-card {
    padding: 26px 22px;
  }
}
/* ===== GUILD HYMN ===== */
.gp-audio-card {
  text-align: center;
}

.gp-audio-btn {
  gap: 10px;
  font-size: 15px;
}

.gp-audio-btn.playing {
  background: linear-gradient(180deg, #ff9440, #ff5c00);
  box-shadow: 0 0 40px rgba(255,120,40,.6);
}
/* ===== HYMN TITLE GOLD ===== */
.gp-audio-card h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #f4d48f;
  letter-spacing: 0.5px;

  text-shadow:
    0 0 12px rgba(255, 190, 100, 0.45),
    0 0 28px rgba(255, 140, 60, 0.35);
}
