:root{
  --bg:#070812;
  --panel:rgba(17,18,32,.68);
  --panel2:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.12);
  --text:#fff;
  --muted:#c9c8d5;
  --pink:#ff3f93;
  --pink2:#ff76b7;
  --violet:#8f5cff;
  --cyan:#58d8ff;
  --shadow:0 30px 90px rgba(0,0,0,.45);
  --max:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 15%,rgba(255,63,147,.18),transparent 35%),
    radial-gradient(circle at 80% 20%,rgba(88,216,255,.14),transparent 30%),
    linear-gradient(180deg,#0a0b16,#090a13 45%,#070812);
  min-height:100vh;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 50% 70%,rgba(143,92,255,.12),transparent 30%),
    linear-gradient(rgba(7,8,18,.25),rgba(7,8,18,.82));
}

.site-bg{
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(rgba(7,8,18,.28),rgba(7,8,18,.9)),
    url('/assets/images/mawifm-bg.png') center/cover no-repeat;
  opacity:.34;
  filter:saturate(1.05) contrast(1.05);
}

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

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  min-height:76px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(9,10,20,.68);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}

.logo{
  font-weight:900;
  font-size:26px;
  letter-spacing:-1px;
  white-space:nowrap;
}

.logo span{
  color:var(--pink2);
  text-shadow:0 0 18px rgba(255,63,147,.45);
}

nav{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  padding:9px 12px;
  border-radius:999px;
  color:#eceaf3;
  font-size:13px;
  transition:.2s ease;
}

nav a:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
  box-shadow:0 0 22px rgba(255,63,147,.12);
}

main{
  width:100%;
}

.hero{
  min-height:calc(100vh - 76px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
}

.hero-content{
  width:min(880px,100%);
  text-align:center;
}

.live-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 15px;
  border:1px solid rgba(255,63,147,.34);
  background:rgba(255,63,147,.11);
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.7px;
  color:#ffd5e8;
  box-shadow:0 0 30px rgba(255,63,147,.12);
}

.live-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff2c79;
  box-shadow:0 0 14px #ff2c79;
  animation:pulse 1.4s infinite;
}

@keyframes pulse{
  0%,100%{opacity:1}
  50%{opacity:.35}
}

.hero h1{
  margin:24px 0 8px;
  font-size:clamp(56px,10vw,120px);
  line-height:.9;
  letter-spacing:-5px;
  font-weight:950;
  text-shadow:0 16px 50px rgba(0,0,0,.35);
}

.hero h1 span{
  color:var(--pink2);
  text-shadow:
    0 0 18px rgba(255,118,183,.35),
    0 0 45px rgba(255,63,147,.18);
}

.slogan{
  margin:10px 0 30px;
  color:#d8d4df;
  font-size:clamp(18px,2.2vw,27px);
  letter-spacing:.4px;
}

.player{
  margin:0 auto;
  max-width:720px;
  padding:26px;
  border-radius:32px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.13);
  backdrop-filter:blur(18px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.now{
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:center;
  justify-content:center;
}

.now span{
  font-size:11px;
  font-weight:800;
  letter-spacing:1.6px;
  color:#b9b5c4;
}

.now strong{
  font-size:22px;
  color:#fff;
}

.player-row{
  margin-top:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}

.play-btn{
  width:82px;
  height:82px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  font-size:28px;
  color:#fff;
  background:linear-gradient(135deg,var(--pink),var(--pink2));
  box-shadow:
    0 0 0 8px rgba(255,63,147,.08),
    0 16px 45px rgba(255,63,147,.38);
  transition:.18s ease;
}

.play-btn:hover{
  transform:scale(1.05);
}

.volume-wrap{
  flex:1;
  max-width:430px;
  display:flex;
  align-items:center;
  gap:12px;
}

.volume-wrap span{
  font-size:20px;
}

#volume{
  width:100%;
  accent-color:var(--pink);
  cursor:pointer;
}

.stats{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.stats span{
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.075);
  color:#cbc7d2;
  font-size:12px;
}

.panel-section{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto 42px;
  padding:34px;
  border-radius:30px;
  background:var(--panel);
  border:1px solid var(--line);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}

.panel-section h2{
  margin:0 0 24px;
  font-size:34px;
  letter-spacing:-1px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.cards article,
.profile-card{
  padding:22px;
  border-radius:22px;
  background:var(--panel2);
  border:1px solid rgba(255,255,255,.08);
}

.cards article span{
  display:inline-block;
  margin-bottom:10px;
  color:#ffb8d5;
  font-weight:800;
}

.cards h3,
.profile-card h3{
  margin:0 0 9px;
  font-size:21px;
}

.cards p,
.profile-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.profile-card{
  display:flex;
  align-items:center;
  gap:18px;
}

.avatar{
  width:62px;
  height:62px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:none;
  background:linear-gradient(135deg,var(--pink),var(--violet));
  font-weight:900;
  font-size:21px;
  box-shadow:0 0 30px rgba(255,63,147,.18);
}

form{
  display:grid;
  gap:14px;
}

input,
textarea{
  width:100%;
  border:none;
  outline:none;
  padding:15px 16px;
  border-radius:16px;
  color:#fff;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.09);
  font:inherit;
}

input:focus,
textarea:focus{
  border-color:rgba(255,118,183,.65);
  box-shadow:0 0 0 3px rgba(255,63,147,.08);
}

input::placeholder,
textarea::placeholder{
  color:#aaa6b2;
}

textarea{
  min-height:130px;
  resize:vertical;
}

form button{
  border:none;
  padding:14px 18px;
  border-radius:16px;
  cursor:pointer;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg,var(--pink),var(--pink2));
  box-shadow:0 14px 35px rgba(255,63,147,.22);
}

#requestResult,
#messageResult{
  margin:0;
  color:#ffc8de;
}

footer{
  padding:38px 20px 52px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  color:#bdb9c7;
}

footer strong{
  color:#fff;
}

@media(max-width:900px){
  .topbar{
    align-items:flex-start;
    padding-top:15px;
    padding-bottom:15px;
  }

  nav{
    display:none;
  }

  .hero{
    padding-top:40px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .player-row{
    flex-direction:column;
  }

  .volume-wrap{
    width:100%;
  }

  .panel-section{
    width:min(94%,100%);
    padding:24px;
  }
}

@media(max-width:600px){
  .hero h1{
    letter-spacing:-3px;
  }

  .player{
    padding:20px;
  }

  .play-btn{
    width:74px;
    height:74px;
  }
}
