:root {
    --bg:    #060e18;
    --bg2:   #0a1628;
    --bg3:   #0d1e35;
    --border: rgba(0,150,200,0.12);
    --text:  #e0eaf0;
    --text2: #4a7a9a;
    --text3: #2a4a6a;
    --neon:  #ff4500;
    --neon2: #ffc107;
    --neon3: #00d2ff;
    --acc:   #00a8cc;
    --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 15px;
}

a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 58px;
    background: rgba(6,14,24,0.97);
    border-bottom: 1px solid rgba(0,150,200,0.1);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 22px;
    gap: 20px;
}

.navbar-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--neon);
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255,69,0,0.5);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.navbar-menu a {
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    transition: 0.2s;
    white-space: nowrap;
}

.navbar-menu a:hover {
    background: rgba(0,150,200,0.08);
    color: var(--text);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.2s;
    white-space: nowrap;
}
.btn-neon {
    background: linear-gradient(135deg, var(--neon), #ff6500);
    color: #fff;
    box-shadow: 0 3px 15px rgba(255,69,0,0.3);
}
.btn-neon:hover { transform: translateY(-1px); box-shadow: 0 5px 22px rgba(255,69,0,0.4); }
.btn-outline {
    background: transparent;
    border: 1px solid rgba(0,150,200,0.2);
    color: var(--text2);
}
.btn-outline:hover { border-color: rgba(0,150,200,0.4); color: var(--text); background: rgba(0,150,200,0.06); }
.btn-sm { padding: 6px 12px; font-size: 12px; }

/* ===== KAYAN ŞERİT ===== */
.serit-wrapper {
    background: #020810;
    border-bottom: 1px solid rgba(255,69,0,0.2);
    overflow: hidden;
    height: 46px;
    display: flex;
    align-items: center;
    margin-top: 58px;
    position: relative;
}
.serit-wrapper::before,
.serit-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}
.serit-wrapper::before { left: 0; background: linear-gradient(to right, #020810, transparent); }
.serit-wrapper::after  { right: 0; background: linear-gradient(to left, #020810, transparent); }
.serit-track {
    display: flex;
    align-items: center;
    animation: serit-kayma 30s linear infinite;
    white-space: nowrap;
}
@keyframes serit-kayma { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.serit-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 26px;
    border-right: 1px solid rgba(255,69,0,0.12);
    cursor: pointer;
    transition: 0.2s;
}
.serit-item:hover { background: rgba(255,69,0,0.07); }
.serit-logo {
    width: 30px; height: 30px;
    border-radius: 7px;
    object-fit: cover;
    border: 1px solid rgba(0,150,200,0.2);
    background: var(--bg3);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.serit-ad { font-size: 13px; font-weight: 800; color: var(--neon2); }
.serit-sid { font-size: 11px; color: var(--text3); font-family: monospace; font-weight: 700; }

/* ===== LAYOUT ===== */
.page-wrap {
    display: flex;
    gap: 22px;
    padding: 22px;
    max-width: 1500px;
    margin: 0 auto;
}
.col-radyolar { flex: 1; min-width: 0; }
.col-sid { width: 450px; flex-shrink: 0; }

/* ===== BÖLÜM BAŞLIĞI ===== */
.section-title {
    font-size: 13px;
    font-weight: 900;
    color: var(--text3);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::after { content: ''; flex: 1; height: 1px; background: rgba(0,150,200,0.1); }

/* ===== RADYO KARTI ===== */
.radyo-kart {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg2);
    border: 1px solid rgba(0,150,200,0.1);
    border-radius: var(--radius);
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.radyo-kart::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 2px 0 0 2px;
    opacity: 0;
    transition: 0.25s;
}
.radyo-kart::after {
    content: '';
    position: absolute; inset: 0;
    opacity: 0; transition: 0.3s;
    pointer-events: none;
}
.radyo-kart:hover {
    background: var(--bg3);
    border-color: rgba(0,150,200,0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}
.radyo-kart:hover::before { opacity: 1; }
.radyo-kart:hover::after  { opacity: 1; }
.radyo-kart:hover .card-eq { opacity: 1; }
.radyo-kart:hover .dinle-btn::before { left: 200%; }

.radyo-sira { font-size: 13px; font-weight: 900; color: var(--text3); min-width: 26px; text-align: center; font-family: monospace; }
.radyo-logo-wrap { position: relative; flex-shrink: 0; }
.radyo-logo { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; border: 2px solid rgba(0,150,200,0.15); display: block; }
.radyo-logo-ph { width: 54px; height: 54px; border-radius: 12px; background: var(--bg3); border: 2px solid rgba(0,150,200,0.12); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.logo-ring { position: absolute; inset: -3px; border-radius: 14px; border: 2px solid transparent; animation: ring-glow 2s ease-in-out infinite; opacity: 0; transition: 0.3s; }
.radyo-kart:hover .logo-ring { opacity: 1; }
@keyframes ring-glow { 0%,100%{opacity:0.4} 50%{opacity:0.9} }

.radyo-bilgi { flex: 1; min-width: 0; }
.radyo-adi { font-size: 17px; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 6px; letter-spacing: 0.3px; }
.radyo-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.radyo-tur { font-size: 11px; color: var(--text2); background: rgba(0,150,200,0.06); border: 1px solid rgba(0,150,200,0.12); padding: 2px 9px; border-radius: 20px; }
.radyo-sid { font-size: 13px; font-weight: 900; font-family: monospace; padding: 2px 10px; border-radius: 20px; border: 1px solid; }
.card-eq { display: flex; align-items: flex-end; gap: 2px; height: 16px; margin-right: 4px; opacity: 0; transition: 0.3s; flex-shrink: 0; }
.ceqb { width: 3px; border-radius: 1px; animation: eqa linear infinite; }
@keyframes eqa { 0%,100%{height:2px} 50%{height:100%} }
.dinle-btn { padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 800; border: 1px solid; transition: all 0.2s; white-space: nowrap; display: flex; align-items: center; gap: 7px; flex-shrink: 0; position: relative; overflow: hidden; }
.dinle-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 40%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.12),transparent); transition: 0.5s; }

/* ===== SID PANELİ ===== */
.sid-panel { background: var(--bg2); border: 1px solid rgba(255,69,0,0.18); border-radius: 16px; overflow: hidden; position: relative; }
.sid-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,69,0,0.06), transparent 60%); pointer-events: none; z-index: 0; }
.sid-header { position: relative; z-index: 1; padding: 14px 18px; background: rgba(255,69,0,0.07); border-bottom: 1px solid rgba(255,69,0,0.12); display: flex; align-items: center; justify-content: space-between; }
.sid-header-left { display: flex; align-items: center; gap: 10px; }
.sid-header-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,69,0,0.15); border: 1px solid rgba(255,69,0,0.25); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.sid-header-title { font-size: 14px; font-weight: 900; color: #ff4500; letter-spacing: 0.5px; }
.sid-header-sub { font-size: 11px; color: var(--text3); margin-top: 2px; }
.sid-eq { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.sid-eqb { width: 3px; border-radius: 2px; background: #ff4500; animation: eqa linear infinite; opacity: 0.6; }
.sid-body { position: relative; z-index: 1; padding: 16px 18px; }
.sid-input-wrap { background: rgba(255,69,0,0.06); border: 1px solid rgba(255,69,0,0.22); border-radius: 11px; padding: 14px 16px; margin-bottom: 14px; position: relative; overflow: hidden; }
.sid-input-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,69,0,0.5), transparent); }
.sid-input-label { font-size: 10px; color: var(--text3); letter-spacing: 2px; font-weight: 700; margin-bottom: 8px; display: block; }
.sid-number-input { width: 100%; background: rgba(255,69,0,0.1); border: 1px solid rgba(255,69,0,0.3); color: #ff4500; font-size: 36px; font-weight: 900; font-family: monospace; letter-spacing: 4px; text-align: center; outline: none; border-radius: 9px; padding: 10px; text-shadow: 0 0 18px rgba(255,69,0,0.4); transition: 0.2s; }
.sid-number-input::placeholder { color: rgba(255,69,0,0.18); }
.sid-number-input:focus { border-color: rgba(255,69,0,0.5); background: rgba(255,69,0,0.14); }
.radyo-bulundu { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding: 9px 13px; background: rgba(59,165,93,0.07); border: 1px solid rgba(59,165,93,0.18); border-radius: 8px; }
.radyo-bulundu-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ba55d; animation: dot-pulse 1s ease-in-out infinite; flex-shrink: 0; }
@keyframes dot-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(59,165,93,0.5)} 50%{box-shadow:0 0 0 5px rgba(59,165,93,0)} }
.radyo-bulundu-adi { font-size: 15px; font-weight: 900; color: #3ba55d; }
.form-group { margin-bottom: 11px; }
.form-label { font-size: 10px; color: var(--text3); letter-spacing: 1px; font-weight: 700; margin-bottom: 5px; display: block; }
.form-input { width: 100%; background: rgba(0,150,200,0.05); border: 1px solid rgba(0,150,200,0.12); color: var(--text); padding: 9px 13px; border-radius: 9px; font-size: 13px; outline: none; transition: 0.2s; }
.form-input:focus { border-color: rgba(255,69,0,0.3); background: rgba(255,69,0,0.04); }
.form-select { width: 100%; background: rgba(0,150,200,0.05); border: 1px solid rgba(0,150,200,0.12); color: var(--text); padding: 9px 13px; border-radius: 9px; font-size: 13px; outline: none; cursor: pointer; }
.form-select:focus { border-color: rgba(255,69,0,0.3); }
.form-textarea { width: 100%; background: rgba(0,150,200,0.05); border: 1px solid rgba(0,150,200,0.12); color: var(--text); padding: 9px 13px; border-radius: 9px; font-size: 13px; outline: none; resize: vertical; min-height: 75px; font-family: inherit; transition: 0.2s; }
.form-textarea:focus { border-color: rgba(255,69,0,0.3); }
.sid-send-btn { width: 100%; padding: 16px; border-radius: 11px; background: linear-gradient(135deg, #ff4500, #ff6a00); color: #fff; font-size: 17px; font-weight: 900; border: none; cursor: pointer; box-shadow: 0 5px 22px rgba(255,69,0,0.4); letter-spacing: 2px; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.2s; position: relative; overflow: hidden; }
.sid-send-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); animation: btn-shine 2s ease-in-out infinite; }
@keyframes btn-shine { 0%{left:-100%} 100%{left:200%} }
.sid-send-btn:hover { transform: translateY(-1px); box-shadow: 0 7px 30px rgba(255,69,0,0.55); }
.sid-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.sid-list { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,150,200,0.1); }
.sid-list-title { font-size: 9px; color: var(--text3); letter-spacing: 2px; margin-bottom: 9px; }
.sid-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 9px; border-radius: 7px; cursor: pointer; transition: 0.15s; border-bottom: 1px solid rgba(0,150,200,0.06); }
.sid-row:hover { background: rgba(255,69,0,0.07); }
.sid-row-adi { font-size: 13px; color: var(--text2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 65%; }
.sid-row-num { font-size: 14px; font-weight: 900; font-family: monospace; flex-shrink: 0; }

/* ===== RADYO DETAY ===== */
.radyo-hero { min-height: 280px; display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; overflow: hidden; }
.radyo-hero-bg { position: absolute; inset: 0; z-index: 0; }
.radyo-hero-content { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.radyo-hero-logo { width: 110px; height: 110px; border-radius: 22px; object-fit: cover; border: 3px solid rgba(255,255,255,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.radyo-hero-adi { font-size: 30px; font-weight: 900; letter-spacing: 1px; }
.player-wrap { max-width: 620px; margin: 0 auto; padding: 0 20px 40px; }
.player-card { background: var(--bg2); border: 1px solid rgba(0,150,200,0.1); border-radius: 18px; padding: 26px; text-align: center; }
.player-btn { width: 68px; height: 68px; border-radius: 50%; border: none; cursor: pointer; font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: 0.2s; }
.player-btn:hover { transform: scale(1.06); }
.eq-bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; justify-content: center; margin: 12px 0; }
.eq-bar { width: 4px; border-radius: 2px; animation: eqa linear infinite; }

/* ===== REKLAM ===== */
.reklam-ust, .reklam-alt { padding: 10px 22px; text-align: center; }

/* ===== ADMIN ===== */
.admin-wrap { display: flex; min-height: 100vh; padding-top: 58px; }
.admin-sidebar { width: 225px; background: var(--bg2); border-right: 1px solid rgba(0,150,200,0.1); padding: 20px 0; position: fixed; top: 58px; bottom: 0; left: 0; overflow-y: auto; }
.admin-sidebar a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 14px; color: var(--text2); transition: 0.2s; border-left: 3px solid transparent; }
.admin-sidebar a:hover, .admin-sidebar a.aktif { background: rgba(0,150,200,0.06); color: var(--text); border-left-color: var(--neon); }
.admin-content { flex: 1; margin-left: 225px; padding: 26px; }
.tablo { width: 100%; border-collapse: collapse; font-size: 13px; }
.tablo th { text-align: left; padding: 11px 13px; background: var(--bg3); color: var(--text2); font-size: 12px; font-weight: 700; letter-spacing: 1px; border-bottom: 1px solid rgba(0,150,200,0.1); }
.tablo td { padding: 11px 13px; border-bottom: 1px solid rgba(0,150,200,0.07); vertical-align: middle; }
.tablo tr:last-child td { border-bottom: none; }
.tablo tr:hover td { background: rgba(0,150,200,0.03); }
.badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.5px; display: inline-block; }
.badge-green  { background: rgba(59,165,93,0.15);  color: #3ba55d; border: 1px solid rgba(59,165,93,0.25); }
.badge-red    { background: rgba(237,66,69,0.15);  color: #ed4245; border: 1px solid rgba(237,66,69,0.25); }
.badge-yellow { background: rgba(255,193,7,0.15);  color: #ffc107; border: 1px solid rgba(255,193,7,0.25); }
.badge-blue   { background: rgba(0,210,255,0.15);  color: #00d2ff; border: 1px solid rgba(0,210,255,0.25); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-kart { background: var(--bg2); border: 1px solid rgba(0,150,200,0.1); border-radius: var(--radius); padding: 18px; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--neon); line-height: 1; }
.stat-label { font-size: 11px; color: var(--text3); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.box { background: var(--bg2); border: 1px solid rgba(0,150,200,0.1); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.box-header { padding: 13px 17px; background: var(--bg3); border-bottom: 1px solid rgba(0,150,200,0.1); font-size: 14px; font-weight: 700; color: var(--text2); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.box-body { padding: 17px; }
.alert { padding: 11px 15px; border-radius: 9px; font-size: 14px; margin-bottom: 14px; }
.alert-success { background: rgba(59,165,93,0.1);  border: 1px solid rgba(59,165,93,0.2);  color: #3ba55d; }
.alert-error   { background: rgba(237,66,69,0.1);  border: 1px solid rgba(237,66,69,0.2);  color: #ed4245; }
.alert-info    { background: rgba(0,210,255,0.1);  border: 1px solid rgba(0,210,255,0.2);  color: #00d2ff; }
.footer { text-align: center; padding: 22px; color: var(--text3); font-size: 13px; border-top: 1px solid rgba(0,150,200,0.1); margin-top: 40px; }

/* ===== RENK PANELİ - CSS DEĞIŞKEN OVERRİDE ===== */
.tema-preview { width: 32px; height: 32px; border-radius: 7px; border: 2px solid rgba(255,255,255,0.1); cursor: pointer; display: inline-block; }

@media (max-width: 900px) {
    .page-wrap { flex-direction: column; padding: 12px; }
    .col-sid { width: 100%; }
    .navbar-menu { display: none; }
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
}