/* ============================================================
   DeValcourt.com — Shared Design System
   ============================================================ */

:root {
  --bg: #010314;
  --bg-soft: #0c132f;
  --card-bg: rgba(12,19,47,0.88);
  --accent: #38bdf8;
  --accent-soft: rgba(56,189,248,0.2);
  --text: #f9fafb;
  --muted: #a5b4fc;
  --border: rgba(255,255,255,0.08);
  --border-solid: #1f2937;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "SF Pro Display", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #11153b 0, #010314 50%, #00010a 100%);
  color: var(--text);
  min-height: 100vh;
}

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

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

/* ---- Layout ---- */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.page--narrow { max-width: 1100px; }
.page--song   { max-width: 1040px; padding: 24px 16px 48px; }

/* ---- Site Navigation ---- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-wrap: wrap;
}

.site-nav a {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12,19,47,0.9);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.site-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.site-nav a.active {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-soft);
}

/* ---- Hero (Homepage) ---- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(12,19,47,0.95), rgba(7,10,26,0.95));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.hero-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy .tagline {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e2e8f0;
}

.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  max-width: 260px;
  width: 100%;
  justify-self: start;
}

.hero-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-links {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.hero-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  background: rgba(15,23,42,0.7);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.hero-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---- CTAs / Buttons ---- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  border: 1px solid var(--accent);
  color: var(--text);
  background: var(--accent-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta.secondary {
  border-color: rgba(255,255,255,0.25);
  background: transparent;
  color: var(--muted);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56,189,248,0.25);
}

/* ---- Section titles ---- */
.section-title {
  margin: 60px 0 20px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

/* ---- Cards (generic) ---- */
.card {
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.card p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #e2e8f0;
}

/* ---- Teaser card (album / about) ---- */
.teaser-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(12,19,47,0.85);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.teaser-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
}

.teaser-content h3 {
  margin: 0 0 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.teaser-content p {
  margin: 0 0 10px;
  color: #dbeafe;
  font-size: 0.95rem;
  line-height: 1.5;
}

.teaser-content a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.6);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  background: rgba(56,189,248,0.18);
  transition: transform 0.12s ease, background 0.12s ease;
}

.teaser-content a:hover {
  transform: translateY(-1px);
  background: rgba(56,189,248,0.28);
}

/* ---- Spotlight cards (new music) ---- */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.spotlight-card {
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 20px;
  background: rgba(12,19,47,0.9);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.spotlight-card img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  object-fit: cover;
  aspect-ratio: 1;
}

.spotlight-card .song-meta {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.spotlight-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d8dee9;
  flex: 1;
}

/* ---- Song cards (grid) ---- */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 640px) {
  .songs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .songs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.song-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.song-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
  height: 220px;
}

.song-meta {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.song-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d8dee9;
  flex: 1;
}

.song-card a {
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--text);
  transition: background 0.15s ease, transform 0.15s ease;
}

.song-card a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* ---- Song page hero ---- */
.song-hero {
  margin-top: 24px;
  background: linear-gradient(145deg, var(--bg-soft), #020617);
  border-radius: 18px;
  border: 1px solid var(--border-solid);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .song-hero {
    grid-template-columns: 320px minmax(0, 1.4fr);
    padding: 24px;
  }
}

.song-hero-cover {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #020617;
  background: #000;
}

.song-hero-cover img {
  width: 100%;
  object-fit: cover;
}

.song-hero-content h1 {
  margin: 0 0 4px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-hero-tagline {
  margin: 2px 0 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.release-badge {
  font-size: 0.9rem;
  color: var(--accent);
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.5);
  margin-bottom: 12px;
}

.credits {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

audio {
  width: 100%;
  margin: 8px 0 16px;
  border-radius: 10px;
  background: #020617;
}

/* ---- Platform / streaming buttons ---- */
.platforms-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 6px;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid var(--border-solid);
  color: var(--muted);
  background: rgba(15,23,42,0.9);
  transition: border-color 0.1s ease, color 0.1s ease, background 0.1s ease, transform 0.08s ease;
}

.platform span.icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
}

.platform:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(15,23,42,1);
  transform: translateY(-1px);
}

.coming-soon {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---- Pill buttons ---- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.5);
  background: rgba(56,189,248,0.15);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Album page pills */
.pill--link {
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.3);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- Link buttons ---- */
.link-button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  background: rgba(12,19,47,0.8);
  transition: transform 0.12s ease, background 0.12s ease;
}

.link-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
}

/* ---- About / Lyrics cards (song pages) ---- */
.about-card,
.lyrics-card {
  margin-top: 26px;
  padding: 18px 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--border-solid);
  background: rgba(15,23,42,0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.about-card h3,
.lyrics-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.about-card p {
  margin: 6px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.lyrics-body {
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: #e5e7eb;
}

/* ---- Related singles grid ---- */
.related-section {
  margin-top: 28px;
}

.related-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.related-card {
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(56,189,248,0.65);
  background: radial-gradient(circle at 10% 20%, rgba(56,189,248,0.3), rgba(2,6,23,0.85)),
    linear-gradient(135deg, rgba(8,14,30,0.95), rgba(2,6,23,0.92));
  box-shadow: 0 25px 55px rgba(0,0,0,0.55), inset 0 0 30px rgba(56,189,248,0.09);
  display: flex;
  flex-direction: column;
}

.related-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(56,189,248,0.9);
  margin-bottom: 10px;
}

.related-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  height: 100%;
}

.related-text {
  flex: 1 1 auto;
  width: 100%;
}

.related-title {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 6px;
}

.related-desc {
  font-size: 0.92rem;
  color: rgba(255,231,214,0.9);
  line-height: 1.6;
  margin: 0;
}

.related-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.9);
  color: var(--text);
  background: rgba(56,189,248,0.16);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-button:hover {
  transform: translateY(-1px) scale(1.01);
  background: rgba(56,189,248,0.26);
  box-shadow: 0 8px 18px rgba(56,189,248,0.15);
}

/* ---- Contact form ---- */
.contact-card {
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  background: rgba(12,19,47,0.8);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.contact-content h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-content p {
  margin: 0 0 20px;
  color: #dbe8ff;
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(4,6,18,0.9);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56,189,248,0.25);
}

/* ---- Authority section ---- */
.authority-section {
  margin-top: 50px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(12,19,47,0.85);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.authority-section h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.authority-section p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: #e2e8f0;
}

.authority-section a {
  color: var(--accent);
  font-weight: 600;
}

.authority-section a:hover {
  text-decoration: underline;
}

/* ---- About-press grid (homepage) ---- */
.about-press-grid {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

@media (min-width: 860px) {
  .about-press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---- Album page specifics ---- */
.album-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(56,189,248,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}

.album-hero img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.album-hero h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.album-hero .tagline {
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.album-hero .release { color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.album-hero p { margin: 0 0 10px; color: #d9e4f5; }

@media (max-width: 720px) {
  .album-hero { grid-template-columns: 1fr; }
}

.section {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px;
  margin-top: 18px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.section p { margin: 0 0 10px; color: #d9e4f5; }

.tracklist { display: grid; gap: 10px; margin-top: 10px; }

.track {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.track-header { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.track-title { font-weight: 700; }
.track-meta { color: var(--muted); font-size: 0.95rem; }
.track p { margin: 6px 0 0; }
.track a { color: var(--accent); font-weight: 600; font-size: 0.95rem; }

/* ---- Press page ---- */
.press-header {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(12,19,47,0.95), rgba(7,10,26,0.95));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  margin-bottom: 28px;
}

.press-header h1 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-header p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.7;
}

.nav-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-row a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--text);
  background: rgba(56,189,248,0.18);
}

.press-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px;
  background: rgba(7,10,26,0.6);
  display: grid;
  gap: 8px;
}

.press-meta {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.6);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  background: rgba(56,189,248,0.18);
}

/* ---- Press kit ---- */
.grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 860px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
  color: #e2e8f0;
}

.photo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.photo-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12,19,47,0.8);
}

.photo-grid img {
  width: 100%;
  object-fit: cover;
  height: 150px;
}

/* ---- Apps list (about page) ---- */
.apps-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.app-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8,12,30,0.72);
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.app-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-content p {
  margin: 0;
  color: #dbe8ff;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

@media (max-width: 620px) {
  .app-item { grid-template-columns: 1fr; }
  .app-icon { width: 56px; height: 56px; }
}

/* ---- Links row ---- */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* ---- Footer ---- */
footer {
  margin-top: 80px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 6px;
}

/* ---- Utility: tagline ---- */
.tagline {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* ---- Utility: release badge ---- */
.release {
  font-size: 0.9rem;
  color: var(--accent);
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.5);
  margin-bottom: 12px;
}

/* ---- Dual version layout (codindirty) ---- */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .dual-grid { grid-template-columns: repeat(2, 1fr); }
}

.version-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: var(--card-bg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.version-card img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
  aspect-ratio: 1;
}

.version-card h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.version-card .genre-tag {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
