:root {
    --bg-main: #0b0b12;
    --bg-panel: #14141d;
    --bg-panel-2: #191922;
    --bg-hover: #1f1f2a;
    --border: #26262f;
    --gold: #c9973f;
    --gold-light: #e3b96a;
    --gold-grad: linear-gradient(135deg, #e6c27a 0%, #c9973f 50%, #a67826 100%);
    --text: #f2f0ec;
    --text-muted: #9a97a3;
    --text-dim: #6c6a75;
    --blue: #4d7cfe;
    --red: #e6435a;
    --purple: #8b5cf6;
    --teal: #14b8a6;
    --green: #22c55e;
    --pink: #ec4899;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 8px 24px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

svg { flex-shrink: 0; vertical-align: middle; }
.top-nav a, .sidebar nav a, .mobile-bottom-nav a, .qc .title, .section-head h3,
.playlist-btn, .see-all, .tab-row button, .radio-live, .likes, .hero-actions a,
.btn-gold, .btn-outline, .np-controls span, .track-list .t-play, .icon-btn,
.social-icons a, .user-chip, .r-play, .badge-item .ic, .event-item .ticket-btn {
    display: inline-flex; align-items: center; gap: 6px;
}
.icon.blue, .icon.red, .icon.gold, .icon.green, .icon.purple, .icon.teal, .icon.gray { display: flex; align-items: center; justify-content: center; }
.play-circle { display: flex; align-items: center; justify-content: center; }

body {
    background: var(--bg-main);
    color: var(--text);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ---------- Topbar ---------- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 1px; }
.logo .of-badge {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gold-grad);
    display: flex; align-items: center; justify-content: center;
    color: #1a1208; font-weight: 800; font-size: 16px;
}
.logo .logo-text span { display: block; }
.logo .logo-text .brand { font-size: 15px; color: var(--text); }
.logo .logo-text .sub { font-size: 9px; letter-spacing: 3px; color: var(--gold-light); font-weight: 500; }

.top-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; flex-wrap: wrap; }
.top-nav a {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 14px; border-radius: var(--radius-sm);
    font-size: 13.5px; color: var(--text-muted); font-weight: 500;
    transition: .15s;
}
.top-nav a:hover { color: var(--text); background: var(--bg-hover); }
.top-nav a.active { background: var(--gold-grad); color: #1a1208; font-weight: 600; }

.top-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-panel-2); color: var(--text-muted);
    position: relative; border: none; cursor: pointer; font-family: inherit;
}
.icon-btn .badge {
    position: absolute; top: -3px; right: -3px;
    background: var(--red); color: #fff; font-size: 10px;
    min-width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.user-chip { display: flex; align-items: center; gap: 8px; }
.user-chip img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.user-chip .name { font-size: 13px; font-weight: 600; }
.user-chip .role { font-size: 10.5px; color: var(--gold-light); }

.search-wrap { position: relative; }
.site-search-form {
    display: none; position: absolute; top: 48px; right: 0; z-index: 50;
    background: var(--bg-panel); border: 1px solid var(--border); border-radius: 10px;
    padding: 8px; box-shadow: var(--shadow);
}
.site-search-form.open { display: block; }
.site-search-form input {
    width: 230px; background: var(--bg-panel-2); border: 1px solid var(--border); border-radius: 8px;
    padding: 9px 12px; color: var(--text); font-size: 13px; font-family: inherit;
}

/* ---------- Layout ---------- */
.layout { display: grid; grid-template-columns: 230px 1fr 320px; gap: 20px; padding: 20px 24px; max-width: 1600px; margin: 0 auto; align-items: start; }

/* ---------- Sidebar ---------- */
.sidebar { background: var(--bg-panel); border-radius: var(--radius); border: 1px solid var(--border); padding: 16px 10px; position: sticky; top: 78px; }
.sidebar nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: var(--radius-sm);
    font-size: 13.5px; color: var(--text-muted); font-weight: 500;
    margin-bottom: 2px;
}
.sidebar nav a:hover { background: var(--bg-hover); color: var(--text); }
.sidebar nav a.active { background: var(--gold-grad); color: #1a1208; font-weight: 600; }
.sidebar .now-playing { margin-top: 16px; padding: 14px; background: var(--bg-panel-2); border-radius: var(--radius-sm); }
.sidebar .now-playing img { width: 100%; border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; margin-bottom: 10px; }
.sidebar .np-title { font-size: 13px; font-weight: 600; }
.sidebar .np-artist { font-size: 11.5px; color: var(--text-muted); margin-bottom: 8px; }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; background: var(--gold-grad); }
.np-time { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-dim); margin-bottom: 10px; }
.np-controls { display: flex; align-items: center; justify-content: center; gap: 14px; }
.np-controls .play { width: 34px; height: 34px; border-radius: 50%; background: var(--gold-grad); color: #1a1208; display: flex; align-items: center; justify-content: center; }
.playlist-btn { display: block; text-align: center; margin-top: 10px; padding: 9px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 12px; color: var(--gold-light); }
.social-block { padding: 14px 10px 4px; }
.social-block h4 { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.social-icons { display: flex; gap: 8px; margin-bottom: 14px; }
.social-icons a { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-panel-2); display: flex; align-items: center; justify-content: center; }
.stat-line { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text-muted); padding: 4px 0; }
.stat-line b { color: var(--gold-light); }

/* ---------- Hero ---------- */
.hero {
    position: relative; border-radius: var(--radius); overflow: hidden;
    min-height: 420px; display: flex; align-items: center;
    background: #1a1208 center/cover no-repeat;
}
.hero::after { content:''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,8,5,.92) 15%, rgba(10,8,5,.45) 60%, rgba(10,8,5,.15) 100%); }
.hero-content { position: relative; z-index: 2; padding: 40px; max-width: 560px; }
.hero-eyebrow { color: var(--text-muted); font-size: 14px; margin-bottom: 6px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 52px; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; font-style: italic; }
.hero-desc { color: var(--text-muted); font-size: 14.5px; margin-bottom: 22px; }
.hero-actions { display: flex; gap: 12px; }
.btn-gold { background: var(--gold-grad); color: #1a1208; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.btn-outline { border: 1px solid rgba(255,255,255,.25); color: var(--text); padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 13.5px; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; color: #fff; z-index: 3; }
.hero-nav.prev { left: 16px; } .hero-nav.next { right: 16px; }
.hero-dots { position: absolute; bottom: 16px; left: 40px; display: flex; gap: 6px; z-index: 3; }
.hero-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); }
.hero-dots span.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* ---------- Quick cards ---------- */
.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.qc {
    background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px 14px; display: flex; flex-direction: column; gap: 12px;
    transition: .15s;
}
.qc:hover { transform: translateY(-3px); border-color: var(--gold); }
.qc .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.qc .icon.blue { background: rgba(77,124,254,.15); color: var(--blue); }
.qc .icon.red { background: rgba(230,67,90,.15); color: var(--red); }
.qc .icon.gold { background: rgba(201,151,63,.15); color: var(--gold-light); }
.qc .icon.green { background: rgba(34,197,94,.15); color: var(--green); }
.qc .icon.purple { background: rgba(139,92,246,.15); color: var(--purple); }
.qc .icon.teal { background: rgba(20,184,166,.15); color: var(--teal); }
.qc .icon.gray { background: rgba(255,255,255,.08); color: var(--text-muted); }
.qc .title { font-size: 13.5px; font-weight: 600; }
.qc .count { font-size: 11.5px; color: var(--text-dim); }

/* ---------- Section ---------- */
.section { margin-top: 26px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-head h3 { font-size: 17px; font-weight: 600; }
.section-head .see-all { font-size: 12.5px; color: var(--gold-light); display: flex; align-items: center; gap: 4px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 180px; background: var(--bg-panel); border: 1px solid var(--border); }
.feature-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .55; }
.feature-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; }
.feature-tag.klip { background: var(--red); }
.feature-tag.album { background: var(--purple); }
.feature-tag.siir { background: var(--gold); color: #1a1208; }
.feature-body { position: relative; z-index: 2; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 180px; }
.feature-body h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.feature-body p { font-size: 12px; color: var(--text-muted); }
.feature-card.poem-card { display: flex; align-items: center; padding: 20px; }
.feature-card.poem-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13.5px; color: #d9d4c8; line-height: 1.7; }
.feature-card.poem-card cite { display: block; margin-top: 10px; color: var(--gold-light); font-size: 12px; }
.play-circle { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; align-self: center; margin-bottom: auto; margin-top: auto; }

.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.panel { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.tab-row { display: flex; gap: 18px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.tab-row button { padding: 8px 4px; font-size: 13px; color: var(--text-muted); font-weight: 600; border-bottom: 2px solid transparent; }
.tab-row button.active { color: var(--gold-light); border-color: var(--gold); }

.track-list li { display: flex; align-items: center; gap: 12px; padding: 9px 4px; border-bottom: 1px solid var(--border); font-size: 13px; }
.track-list li:last-child { border-bottom: none; }
.track-list .rank { width: 20px; color: var(--text-dim); font-weight: 600; }
.track-list .t-name { flex: 1; font-weight: 500; }
.track-list .t-time { color: var(--text-dim); font-size: 12px; }
.track-list .t-play { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-panel-2); display: flex; align-items: center; justify-content: center; color: var(--gold-light); }

.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.photo-grid a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid .more { position: absolute; inset: 0; background: rgba(0,0,0,.6); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.photo-grid .more span { font-size: 10px; font-weight: 400; color: var(--text-muted); }

/* ---------- Right column ---------- */
.right-col .panel { margin-bottom: 16px; }
.radio-live { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; margin-bottom: 12px; color: var(--red); }
.radio-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(230,67,90,.2); }
.radio-track { display: flex; align-items: center; gap: 10px; }
.radio-track img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; }
.radio-track .info span { display: block; }
.radio-track .r-status { font-size: 10.5px; color: var(--text-dim); }
.radio-track .r-name { font-size: 13.5px; font-weight: 600; }
.radio-track .r-artist { font-size: 11.5px; color: var(--text-muted); }
.radio-track .r-play { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; background: var(--gold-grad); color: #1a1208; display: flex; align-items: center; justify-content: center; }
.eq-bars { display: flex; align-items: flex-end; gap: 2px; height: 18px; margin-top: 10px; }
.eq-bars span { width: 3px; background: var(--gold); border-radius: 2px; animation: eq 1s ease-in-out infinite; }
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }

.news-item { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.news-item:last-child { border-bottom: none; }
.news-item img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; }
.news-item h5 { font-size: 12.5px; font-weight: 600; line-height: 1.3; }
.news-item span { font-size: 10.5px; color: var(--text-dim); }

.event-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.event-item:last-child { border-bottom: none; }
.event-date { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--bg-panel-2); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-date b { font-size: 15px; color: var(--gold-light); line-height: 1; }
.event-date span { font-size: 9px; color: var(--text-dim); text-transform: uppercase; }
.event-item .e-info { flex: 1; }
.event-item h5 { font-size: 12.5px; font-weight: 600; }
.event-item p { font-size: 11px; color: var(--text-muted); }
.event-item .ticket-btn { font-size: 10.5px; font-weight: 600; padding: 6px 10px; border-radius: 999px; background: var(--gold-grad); color: #1a1208; }

.quote-panel blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13px; color: #d9d4c8; line-height: 1.7; margin-bottom: 10px; }
.quote-panel cite { display: block; color: var(--gold-light); font-size: 12px; margin-bottom: 10px; }
.quote-panel .likes { font-size: 12px; color: var(--red); display: flex; align-items: center; gap: 6px; }

/* ---------- Footer badges ---------- */
.badge-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin: 26px 24px 0; }
.badge-item { display: flex; align-items: center; gap: 10px; }
.badge-item .ic { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-panel-2); display: flex; align-items: center; justify-content: center; color: var(--gold-light); }
.badge-item b { display: block; font-size: 12.5px; }
.badge-item span { font-size: 10.5px; color: var(--text-dim); }

footer.site-footer { text-align: center; padding: 22px; color: var(--text-dim); font-size: 12px; }
footer.site-footer .foot-links { display: flex; gap: 18px; justify-content: center; margin-top: 8px; }
footer.site-footer .foot-links a { color: var(--text-muted); }

/* ---------- Mobile bottom bar ---------- */
.mobile-topbar, .mobile-bottom-nav { display: none; }

@media (max-width: 1150px) {
    .layout { grid-template-columns: 1fr; }
    .sidebar, .right-col { display: none; }
    .quick-cards { grid-template-columns: repeat(4,1fr); }
    .feature-grid, .two-col { grid-template-columns: 1fr; }
    .badge-row { grid-template-columns: repeat(2,1fr); margin: 20px 12px 0; }
    .top-nav { display: none; }
}

@media (max-width: 640px) {
    .topbar { display: none; }
    body { padding-bottom: 60px; font-size: 13.5px; }
    .mobile-topbar {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 14px; background: var(--bg-panel); border-bottom: 1px solid var(--border);
        position: sticky; top: 0; z-index: 100;
    }
    .mobile-topbar .of-badge { width: 32px; height: 32px; font-size: 13px; }
    .mobile-topbar .brand { font-size: 13px; }
    .mobile-topbar .sub { font-size: 8px; }
    .mobile-topbar .icon-btn { width: 32px; height: 32px; }

    .layout { padding: 10px; gap: 12px; }
    .hero { min-height: 220px; border-radius: 10px; }
    .hero-content { padding: 16px; max-width: 100%; }
    .hero-eyebrow { font-size: 11px; margin-bottom: 3px; }
    .hero-title { font-size: 22px; margin-bottom: 6px; }
    .hero-desc { font-size: 11.5px; margin-bottom: 14px; }
    .hero-actions { gap: 8px; }
    .btn-gold, .btn-outline { padding: 9px 14px; font-size: 11.5px; }
    .hero-nav { width: 28px; height: 28px; }
    .hero-dots { left: 16px; bottom: 10px; }

    .quick-cards { grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 14px; }
    .qc { padding: 10px 6px; gap: 6px; border-radius: 10px; align-items: center; text-align: center; }
    .qc .icon { width: 30px; height: 30px; border-radius: 8px; }
    .qc .icon svg { width: 15px; height: 15px; }
    .qc .title { font-size: 10.5px; line-height: 1.2; }
    .qc .count { font-size: 9px; }

    .section { margin-top: 18px; }
    .section-head { margin-bottom: 10px; }
    .section-head h3 { font-size: 14.5px; }
    .section-head .see-all { font-size: 11px; }

    .feature-grid { gap: 10px; }
    .feature-card { min-height: 130px; }
    .feature-body { min-height: 130px; padding: 12px; }
    .feature-body h4 { font-size: 13px; }
    .feature-body p { font-size: 10.5px; }
    .feature-card.poem-card blockquote { font-size: 11.5px; }

    .two-col { gap: 10px; }
    .panel { padding: 12px; border-radius: 10px; }
    .tab-row { gap: 12px; margin-bottom: 10px; }
    .tab-row button { font-size: 11.5px; padding: 6px 2px; }
    .track-list li { padding: 7px 2px; font-size: 12px; }
    .track-list .t-time { font-size: 11px; }

    .photo-grid { grid-template-columns: repeat(3,1fr); gap: 6px; }

    .radio-track img { width: 42px; height: 42px; }
    .radio-track .r-name { font-size: 12.5px; }
    .radio-track .r-artist { font-size: 10.5px; }

    .news-item img { width: 40px; height: 40px; }
    .news-item h5 { font-size: 11.5px; }

    .event-item .event-date { width: 38px; height: 38px; }
    .event-item h5 { font-size: 11.5px; }
    .event-item .ticket-btn { font-size: 10px; padding: 5px 9px; }

    .badge-row { display: none; }
    .mobile-bottom-nav {
        display: flex; justify-content: space-around; align-items: center;
        position: fixed; bottom: 0; left: 0; right: 0; height: 56px;
        background: var(--bg-panel); border-top: 1px solid var(--border); z-index: 100;
    }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9.5px; color: var(--text-dim); }
    .mobile-bottom-nav a svg { width: 18px; height: 18px; }
    .mobile-bottom-nav a.active { color: var(--gold-light); }
}

/* ============================================================
   ALT SAYFALAR (Müzik / Video / Haberler / Fotoğraflar / Şiir
   / Etkinlikler / Radyo / İletişim / Sanatçı / Blog / Topluluk)
   ============================================================ */

.main-wide { grid-column: 2 / -1; }

.page-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-header h1 { font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.page-header h1 svg { color: var(--gold-light); }
.page-header p { color: var(--text-muted); font-size: 13.5px; margin-top: 4px; }
.page-header .count-pill { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px; font-size: 12.5px; color: var(--gold-light); font-weight: 600; }

/* Kart grid (müzik / video / haber) */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.media-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .15s; position: relative; }
.media-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.media-card .thumb { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-panel-2); }
.media-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-card .thumb .play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(10,8,5,.25); opacity: 0; transition: .15s;
}
.media-card:hover .thumb .play-overlay { opacity: 1; }
.media-card .thumb .play-overlay span {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); color: #1a1208;
    display: flex; align-items: center; justify-content: center;
}
.media-card .thumb .rank-badge { position: absolute; top: 8px; left: 8px; background: rgba(10,8,5,.7); color: var(--gold-light); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.media-card .body { padding: 13px; }
.media-card h4 { font-size: 13.5px; font-weight: 600; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.media-card p { font-size: 11.5px; color: var(--text-muted); }
.media-card .meta-row { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; font-size: 11px; color: var(--text-dim); }
.media-card .meta-row .heart-btn { display: flex; align-items: center; gap: 4px; color: var(--text-dim); }

/* Video grid (yatay kart) */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.video-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.video-card .thumb { position: relative; aspect-ratio: 16/9; background: var(--bg-panel-2); }
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card .thumb .dur { position: absolute; bottom: 8px; right: 8px; background: rgba(10,8,5,.75); color: #fff; font-size: 10.5px; padding: 2px 7px; border-radius: 5px; }
.video-card .thumb .tag { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; }
.video-card .thumb .play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,8,5,.2); opacity: 0; transition: .15s; }
.video-card:hover .thumb .play-overlay { opacity: 1; }
.video-card .thumb .play-overlay span { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); color: #1a1208; display: flex; align-items: center; justify-content: center; }
.video-card .body { padding: 13px; }
.video-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.video-card p { font-size: 11.5px; color: var(--text-dim); }

/* Haber grid */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.news-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.news-card .thumb { aspect-ratio: 16/10; background: var(--bg-panel-2); }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.news-card .date-pill { font-size: 10.5px; color: var(--gold-light); margin-bottom: 6px; font-weight: 600; }
.news-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.news-card p { font-size: 12.5px; color: var(--text-muted); flex: 1; }
.news-card .read-more { margin-top: 12px; font-size: 12px; color: var(--gold-light); display: flex; align-items: center; gap: 4px; }

/* Fotoğraf galerisi (tam) */
.photo-grid-full { display: grid; grid-template-columns: repeat(auto-fill, 110px); gap: 10px; justify-content: start; }
.photo-grid-full a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; display: block; width: 110px; height: 110px; }
.photo-grid-full img { width: 100%; height: 100%; object-fit: cover; }

/* Şiir listesi */
.poem-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.poem-card-full { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: relative; }
.poem-card-full .pop-tag { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #1a1208; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 999px; text-transform: uppercase; }
.poem-card-full h4 { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold-light); margin-bottom: 10px; font-size: 15px; }
.poem-card-full blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13.5px; color: #d9d4c8; line-height: 1.8; white-space: pre-line; }
.poem-card-full .poem-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); }
.poem-card-full cite { color: var(--gold-light); font-size: 12px; }
.poem-card-full .likes { display: flex; align-items: center; gap: 5px; color: var(--red); font-size: 12.5px; }

/* Etkinlik listesi (tam) */
.event-list-full .event-row { display: flex; align-items: center; gap: 18px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; }
.event-list-full .event-date-big { width: 62px; height: 62px; border-radius: var(--radius-sm); background: var(--bg-panel-2); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.event-list-full .event-date-big b { font-size: 22px; color: var(--gold-light); line-height: 1; }
.event-list-full .event-date-big span { font-size: 10px; color: var(--text-dim); text-transform: uppercase; margin-top: 2px; }
.event-list-full .ev-info { flex: 1; }
.event-list-full .ev-info h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.event-list-full .ev-info p { font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.event-list-full .ticket-btn-lg { background: var(--gold-grad); color: #1a1208; padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 13px; white-space: nowrap; }

/* Radyo sayfası */
.radio-hero { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; }
.radio-hero .cover { width: 190px; height: 190px; border-radius: var(--radius); margin: 0 auto 20px; object-fit: cover; box-shadow: var(--shadow); }
.radio-hero .live-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(230,67,90,.12); color: var(--red); padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 14px; }
.radio-hero .live-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.radio-hero h2 { font-size: 22px; margin-bottom: 4px; }
.radio-hero p { color: var(--text-muted); margin-bottom: 22px; }
.radio-hero .big-play { width: 70px; height: 70px; border-radius: 50%; background: var(--gold-grad); color: #1a1208; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.radio-hero .eq-bars { justify-content: center; margin-top: 22px; height: 30px; }

/* İletişim formu */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-panel-2); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item h5 { font-size: 13.5px; margin-bottom: 2px; }
.contact-info-item p { font-size: 12.5px; color: var(--text-muted); }
.site-form .form-group { margin-bottom: 14px; }
.site-form label { display: block; font-size: 12.5px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.site-form input, .site-form textarea {
    width: 100%; background: var(--bg-panel-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 11px 13px; color: var(--text); font-size: 13.5px; font-family: inherit;
}
.site-form textarea { min-height: 120px; resize: vertical; }
.site-form .btn-gold { border: none; font-size: 13.5px; cursor: pointer; }

/* Sanatçı sayfası */
.artist-hero { display: flex; gap: 26px; align-items: center; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; }
.artist-hero img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); flex-shrink: 0; }
.artist-hero h1 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 28px; margin-bottom: 6px; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.artist-hero p { color: var(--text-muted); font-size: 13.5px; line-height: 1.7; max-width: 640px; }
.artist-stats { display: flex; gap: 26px; margin-top: 14px; }
.artist-stats div b { display: block; font-size: 18px; color: var(--gold-light); }
.artist-stats div span { font-size: 11px; color: var(--text-dim); }

/* Boş durum */
.empty-state { text-align: center; padding: 50px 20px; color: var(--text-dim); }
.empty-state svg { color: var(--text-dim); margin-bottom: 12px; }
.empty-state p { font-size: 13.5px; }

@media (max-width: 1150px) {
    .main-wide { grid-column: 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .artist-hero { flex-direction: column; text-align: center; }
    .artist-stats { justify-content: center; }
}

/* YouTube oynatıcı penceresi (modal) */
.yt-modal {
    position: fixed; inset: 0; background: rgba(5,4,3,.85); z-index: 999;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.yt-modal.open { display: flex; }
.yt-modal-inner { width: 100%; max-width: 720px; }
.yt-modal-close {
    display: block; margin: 0 0 10px auto; width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-panel); border: 1px solid var(--border); color: var(--text);
    display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer;
}
.yt-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.yt-modal-frame iframe { width: 100%; height: 100%; border: 0; }
[data-yt] { cursor: pointer; }
[data-mp3] { cursor: pointer; }

/* Mini MP3 oynatıcı çubuğu */
.mini-player {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
    display: none; align-items: center; gap: 14px;
    background: var(--bg-panel); border-top: 1px solid var(--border);
    padding: 10px 20px; box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.mini-player.open { display: flex; }
.mini-player img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mp-info { display: flex; flex-direction: column; min-width: 120px; max-width: 200px; flex-shrink: 0; }
.mp-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-artist { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-play-btn {
    width: 36px; height: 36px; border-radius: 50%; background: var(--gold-grad); color: #1a1208;
    border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.mp-progress-wrap { flex: 1; display: flex; align-items: center; gap: 8px; }
.mp-time { font-size: 10.5px; color: var(--text-dim); min-width: 34px; text-align: center; }
.mp-seek { flex: 1; accent-color: var(--gold); height: 4px; cursor: pointer; }
.mp-close { background: none; border: none; color: var(--text-dim); font-size: 15px; cursor: pointer; padding: 6px; flex-shrink: 0; }

@media (max-width: 640px) {
    .mini-player { bottom: 56px; padding: 8px 12px; gap: 10px; }
    .mp-info { min-width: 70px; max-width: 110px; }
    .mp-progress-wrap { display: none; }
    body.mp-open .mobile-bottom-nav { bottom: 0; }
}

