/* ================================
   ALOSMUSIC - GRID CARD THEME
================================ */

:root{
  --bg:#0b0b0b;
  --panel:#151515;
  --panel2:#1c1c1c;
  --text:#ffffff;
  --muted:#b7b7b7;
  --brand:#f5c26b;
  --line:#2a2a2a;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

/* ================= HEADER ================= */

header{
  background:#111;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.site-logo{ height:40px; width:auto; }

.logo-text{
  font-size:22px;
  font-weight:900;
  letter-spacing:1px;
  color:var(--brand);
}

.navlinks a{
  margin-left:18px;
  color:var(--muted);
}

.navlinks a:hover{ color:#fff; }

/* ================= HERO ================= */

.hero{
  padding:80px 0;
  background: radial-gradient(circle at 30% 20%, #222 0%, #111 40%, #000 100%);
  border-bottom:1px solid var(--line);
}

.hero h1{
  margin:0 0 12px;
  font-size:46px;
  line-height:1.1;
}

.hero p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:18px;
  max-width:700px;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:10px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
}

.btn.primary{
  background:var(--brand);
  color:#000;
}

.btn.ghost{
  background:transparent;
  border-color:var(--line);
  color:#fff;
}

/* ================= SECTION ================= */

.section{ padding:50px 0; }

h2{ margin:0 0 16px; }

/* ================= GRID CARDS ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

@media(max-width:950px){
  .grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media(max-width:650px){
  .grid{ grid-template-columns:1fr; }
  .navlinks{ display:none; }
  .hero h1{ font-size:34px; }
}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  box-shadow:0 8px 18px rgba(0,0,0,0.35);
}

/* Cover “box” like your screenshot */
.cover{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  background:#333;
  margin-bottom:12px;
  display:block;
}

/* Song text */
.song-title{
  font-size:16px;
  margin:6px 0 8px;
  font-weight:900;
}

.song-artist{
  margin:0 0 10px;
  color:var(--muted);
  font-size:13px;
}

.stats{
  margin:0 0 12px;
  color:#9f9f9f;
  font-size:12px;
}

/* audio */
audio{
  width:100%;
  margin:10px 0 12px;
}

/* button row */
.row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= FOOTER ================= */

footer{
  border-top:1px solid var(--line);
  background:#111;
  padding:24px 0;
  color:var(--muted);
  text-align:center;
  margin-top:30px;
}
