/*
Theme Name: Under The Christmas Star
Theme URI: https://slys.us
Author: Nova Sly
Author URI: https://slys.us
Description: One-page splash theme for the single "Under The Christmas Star" while the main site is under construction.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: under-the-christmas-star
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #173b63 0, #020817 55%, #00010a 100%);
  color: #e5e7eb;
}

a {
  color: #facc6b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  overflow: hidden;
}

/* subtle star noise */
.page-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0, transparent 50%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.35) 0, transparent 50%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.25) 0, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.card {
  position: relative;
  max-width: 1000px;
  width: 100%;
  background: rgba(11, 24, 48, 0.97);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 26px 24px;
  z-index: 1;
}

.card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 24px;
}

@media (max-width: 840px) {
  .card-inner {
    grid-template-columns: 1fr;
  }
}

/* LEFT: artwork */

.artwork-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top, #27496f 0, #020b1c 70%);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.artwork-inner {
  position: relative;
}

.artwork-image {
  display: block;
  width: 100%;
  height: auto;
}

/* RIGHT: text + audio */

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.song-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fdfcf5;
  margin: 0 0 4px;
}

.song-artist {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  margin-bottom: 14px;
}

.song-tagline {
  font-size: 0.98rem;
  color: #c7d2fe;
  margin-bottom: 18px;
}

.audio-wrap {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 16px 14px 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 18px;
}

/* custom player */

.custom-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.player-btn {
  border-radius: 999px;
  width: 38px;
  height: 38px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: radial-gradient(circle at top left, #facc6b 0, #f97316 45%, #fb7185 100%);
  color: #111827;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.player-btn-secondary {
  background: #0f172a;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.player-btn:focus {
  outline: 2px solid #facc6b;
  outline-offset: 2px;
}

.player-progress {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.player-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  overflow: hidden;
  cursor: pointer;
}

.player-bar-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: radial-gradient(circle at left, #facc6b 0, #f97316 40%, #fb7185 100%);
}

.player-time {
  font-size: 0.75rem;
  color: #cbd5f5;
  display: flex;
  justify-content: space-between;
}

.notice {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 12px;
}

.coming-soon {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.coming-soon strong {
  color: #facc6b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: radial-gradient(circle at top left, #facc6b 0, #f97316 45%, #fb7185 100%);
  color: #111827;
  border-color: rgba(248, 250, 252, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.meta {
  font-size: 0.78rem;
  color: #6b7280;
}
