:root{
  --panel: rgba(18,12,6,.92);
  --border: rgba(168,116,42,.90);
  --text: #f6e8c7;
  --muted: rgba(246,232,199,.72);
  --gold: #ffb000;
  --shadow: 0 18px 55px rgba(0,0,0,.62);
  --r: 14px;
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  background-position:center;
  background-size:cover;
  background-attachment:fixed;
  color: var(--text);
}
a{ color:#ffcf6a; text-decoration:none; }
a:hover{ text-decoration:underline; }

.overlay{
  min-height:100vh;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(255,176,0,.12), transparent 60%),
    radial-gradient(800px 520px at 20% 110%, rgba(255,122,0,.10), transparent 60%),
    rgba(0,0,0,.76);
  padding: 22px 14px 40px;
}
.wrap{ max-width:1100px; margin:0 auto; }

.logo-area{ display:flex; justify-content:center; margin-bottom:12px; }
.logo-card{
  width:420px; max-width:92%;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  box-shadow: 0 12px 35px rgba(0,0,0,.55);
  position:relative;
}
.logo-card::before{
  content:""; position:absolute; inset:-2px;
  background: linear-gradient(90deg, rgba(255,176,0,.18), rgba(255,122,0,.08), rgba(255,176,0,.18));
  filter: blur(8px);
  opacity:.8;
  pointer-events:none;
}
.logo-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.55));
  pointer-events:none;
}
.logo-card img{ position:relative; display:block; width:100%; height:auto; }

.panel{
  background: var(--panel);
  border:2px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.player{
  display:grid;
  grid-template-columns: 150px 1fr 220px;
  gap:16px;
  padding:16px;
  align-items:center;
}
.cover{
  width:150px; height:150px;
  border-radius:12px;
  overflow:hidden;
  border:2px solid var(--border);
  background: rgba(0,0,0,.25);
  margin:auto;
}
.cover img{ width:100%; height:100%; object-fit:cover; display:block; }

.info .label{ font-size:13px; color: rgba(255,255,255,.85); margin-bottom:6px; }
.info .title{
  font-size:20px;
  font-weight:900;
  color:#ffd27a;
  line-height:1.2;
  word-break:break-word;
}
.wave{
  margin-top:10px;
  height:42px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.wave canvas{ width:100%; height:100%; display:block; }

.controls{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}
.btncol{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.playbtn{
  width:88px; height:88px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background: radial-gradient(circle at 30% 30%, #ffd27a, #ffb000 55%, #c86a00 100%);
  color:#221100;
  font-size:32px;
  font-weight:900;
  box-shadow: 0 0 30px rgba(255,176,0,.22), 0 0 80px rgba(255,122,0,.12);
}
.playbtn:active{ transform: scale(.99); }
.status{ font-size:12px; color: rgba(255,255,255,.85); text-align:center; }

.volume{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.volume span{ font-size:12px; color: rgba(246,232,199,.78); }
.volume input{ width:120px; }

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-top:1px solid rgba(168,116,42,.75);
}
.stat{
  padding:10px;
  text-align:center;
  border-right:1px solid rgba(168,116,42,.55);
}
.stat:last-child{ border-right:none; }
.stat .k{ font-size:12px; color: rgba(246,232,199,.75); }
.stat .v{ margin-top:4px; font-size:22px; font-weight:900; color:#ffd27a; }
.unit{ font-size:14px; color: rgba(246,232,199,.65); margin-left:4px; }

.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.box{
  background: var(--panel);
  border:2px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:12px;
}
.box h3{ margin:0 0 10px; color:#ffd27a; font-size:15px; letter-spacing:.2px; }
.list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px; }
.list li{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.16);
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
}
.list li b{ color:#ffd27a; }

.hint{ margin-top:10px; font-size:12px; color: rgba(246,232,199,.65); }

.yayin{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.16);
}
.yayin img{
  width:90px; height:90px;
  border-radius:50%;
  border:2px solid var(--gold);
  object-fit:cover;
  box-shadow: 0 0 22px rgba(255,176,0,.22);
}
.yayin-title{ font-weight:900; color:#ffd27a; text-align:center; }
.yayin-sub{ font-size:13px; color: rgba(246,232,199,.72); text-align:center; }

.footer{ margin-top:14px; text-align:center; font-size:12px; color: rgba(246,232,199,.55); }

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .logo-card{ width:300px; }

  .player{
    grid-template-columns: 1fr;
    gap:12px;
    padding:14px;
  }
  .cover{
    width:100%;
    max-width:320px;
    height:320px;
  }
  .info{ text-align:center; }
  .info .title{ font-size:18px; }
  .controls{ justify-content:center; flex-wrap:wrap; }
  .volume{ width:100%; max-width:320px; }
  .stats{ grid-template-columns: 1fr; }
  .stat{ border-right:none; border-top:1px solid rgba(168,116,42,.55); }
  .stat:first-child{ border-top:none; }
}

/* İSTEK BUTONU */
.istek-btn{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color:#ffcf6a;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-size:13px;
}
.istek-btn:hover{ filter:brightness(1.06); }

/* MODAL */
.modal{ position:fixed; inset:0; display:none; z-index:9999; }
.modal.open{ display:block; }
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(3px);
}
.modal-card{
  position:relative;
  width:560px; max-width:92%;
  margin: 10vh auto 0;
  background: rgba(20,20,32,.98);
  border: 1px solid #2a2a3b;
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.65);
  padding: 14px;
}
.modal-top{
  display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
  margin-bottom:10px;
}
.modal-title{ font-size:18px; font-weight:900; color:#ffd27a; }
.modal-sub{ font-size:12px; color:#bbb; margin-top:2px; }
.modal-x{
  border:0; cursor:pointer;
  width:36px; height:36px; border-radius:12px;
  background:#0f0f18; color:#eee; font-size:16px;
  border:1px solid #333;
}
.modal-card label{ display:block; margin:10px 0 6px; color:#bbb; font-size:13px; }
.modal-card input,.modal-card textarea{
  width:100%;
  padding:10px;
  border-radius:12px;
  border:1px solid #333;
  background:#0f0f18;
  color:#eee;
  outline:none;
}
.modal-card textarea{ min-height:120px; resize:vertical; }
.modal-send{
  margin-top:12px;
  width:100%;
  padding:11px 14px;
  border:0;
  border-radius:12px;
  background:#ffb000;
  color:#1a1200;
  font-weight:900;
  cursor:pointer;
}
.modal-msg{ margin-top:10px; padding:10px; border-radius:12px; font-size:13px; }
.modal-msg.ok{ background:rgba(0,200,120,.12); border:1px solid rgba(0,200,120,.25); }
.modal-msg.err{ background:rgba(255,80,80,.12); border:1px solid rgba(255,80,80,.25); }

@media(max-width:600px){
  .modal-card{ margin-top: 6vh; }
}
