/* Express Music Player - Unified GitHub Pages Theme */
:root{
  --bg:#050505;
  --card:#120c14;
  --border:#3a1230;
  --pink:#ff0080;
  --pink2:#c40062;
  --text:#fff;
  --muted:#aaa5ae;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
}
.hero{
  width:100%;
  background:linear-gradient(110deg,#ff0080 0%,#ed0076 48%,#c40062 100%);
  border-radius:0 0 28px 28px;
  overflow:hidden;
}
.hero-content{
  min-height:250px;
  max-width:1450px;
  margin:auto;
  padding:38px 46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.hero-text{flex:1}
.hero-text h1{
  margin:0 0 8px;
  font-size:clamp(42px,5vw,72px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-1.5px;
}
.hero-text p{
  margin:0;
  font-size:clamp(19px,2vw,27px);
  font-weight:500;
}
.hero-icon{
  width:145px;
  height:145px;
  flex:0 0 145px;
  border-radius:30px;
  background:#fff;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 35px rgba(0,0,0,.25);
}
.hero-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:20px;
}
.navigation{
  max-width:1450px;
  margin:34px auto 20px;
  padding:0 28px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.navigation a{
  color:#fff;
  text-decoration:none;
  background:#121016;
  border:1px solid #3b3440;
  border-radius:999px;
  padding:9px 18px;
  font-size:16px;
  transition:.2s;
}
.navigation a:hover,
.navigation a.active{
  background:var(--pink);
  border-color:var(--pink);
}
.container{
  width:min(900px,calc(100% - 40px));
  margin:auto;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  padding:30px 34px;
  margin:20px 0;
  box-shadow:0 8px 30px rgba(0,0,0,.22);
}
.card h2{
  margin:0 0 18px;
  color:var(--pink);
  font-size:25px;
  line-height:1.3;
}
.card p{
  margin:0 0 16px;
  color:#f1edf2;
  font-size:17px;
}
.card p:last-child{margin-bottom:0}
.card a{
  color:#ff4eae;
}
.card ul{
  margin:0;
  padding-left:22px;
  color:#f1edf2;
  font-size:17px;
}
.quick-links{
  display:grid;
  gap:4px;
}
.quick-links a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 4px;
  color:var(--pink);
  text-decoration:none;
  border-bottom:1px solid #28212b;
  font-size:17px;
}
.quick-links a:last-child{border-bottom:0}
.quick-links a:hover{color:#ff5eae}
.quick-links span{font-size:23px}
.badge{
  display:inline-block;
  color:#fff!important;
  background:var(--pink2);
  padding:9px 16px;
  border-radius:22px;
  text-decoration:none;
  font-weight:600;
}
.note{color:var(--muted)!important}
footer{
  text-align:center;
  color:var(--muted);
  font-size:14px;
  padding:28px 20px 34px;
}
@media(max-width:650px){
  .hero-content{min-height:230px;padding:28px 22px;gap:18px}
  .hero-text h1{font-size:34px;letter-spacing:-.7px}
  .hero-text p{font-size:16px}
  .hero-icon{width:92px;height:92px;flex-basis:92px;border-radius:21px;padding:8px}
  .hero-icon img{border-radius:14px}
  .navigation{margin-top:24px;padding:0 14px;gap:7px}
  .navigation a{padding:7px 12px;font-size:14px}
  .container{width:calc(100% - 24px)}
  .card{padding:24px 21px;border-radius:18px}
  .card h2{font-size:22px}
  .card p,.card ul,.quick-links a{font-size:15px}
}
@media(max-width:430px){
  .hero-text h1{font-size:29px}
  .hero-icon{width:78px;height:78px;flex-basis:78px}
}
