/* ============================================================
   SiteLens — Ana Stil Dosyası
   Yazı tipi: Outfit (başlık) + DM Sans (gövde)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ─── Reset & Temel ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --purple:    #7F77DD;
    --purple-lt: #EEEDFE;
    --purple-dk: #534AB7;
    --teal:      #1D9E75;
    --teal-lt:   #E1F5EE;
    --coral:     #D85A30;
    --coral-lt:  #FAECE7;
    --blue:      #378ADD;
    --blue-lt:   #E6F1FB;
    --amber:     #BA7517;
    --amber-lt:  #FAEEDA;
    --green:     #3B6D11;
    --green-lt:  #EAF3DE;
    --pink:      #D4537E;
    --pink-lt:   #FBEAF0;

    --bg:        #F7F6F2;
    --bg-card:   #FFFFFF;
    --border:    rgba(0,0,0,.08);
    --border-md: rgba(0,0,0,.13);
    --text:      #1a1a1a;
    --text-2:    #555;
    --text-3:    #999;
    --radius:    12px;
    --radius-sm: 7px;
    --shadow:    0 1px 4px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.09);
}

html { font-size: 15px; scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ─── Typography ────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; font-weight: 600; }

/* ─── Layout ────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.page-body {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 18px;
    padding: 20px 0 32px;
    flex: 1;
    align-items: start;
}
.main-col { display: flex; flex-direction: column; gap: 12px; }

/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}
.site-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.site-logo span { color: var(--purple); }
.site-logo sub {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-3);
    margin-left: 3px;
    vertical-align: baseline;
    font-family: 'DM Sans', sans-serif;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav a {
    font-size: 13px;
    color: var(--text-2);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background .15s;
}
.header-nav a:hover { background: var(--bg); text-decoration: none; }
.btn { display: inline-flex; align-items: center; gap: 5px; font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; text-decoration: none; transition: .15s; }
.btn-primary {
    background: var(--purple);
    color: #fff;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
}
.btn-primary:hover { background: var(--purple-dk); text-decoration: none; color: #fff; }
.btn-outline {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border-md);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}
.btn-outline:hover { background: var(--bg); text-decoration: none; }
.btn-danger { background: #e74c3c; color: #fff; padding: 7px 14px; border-radius: var(--radius-sm); font-size: 13px; }
.btn-success { background: var(--teal); color: #fff; padding: 7px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; }

/* Header Ad Band */
.header-ad-band {
    background: #f0effa;
    border-top: 1px solid var(--border);
    padding: 7px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ad-badge {
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px dashed var(--border-md);
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0;
}

/* ─── FILTER BAR ────────────────────────────────────────── */
.filter-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}
.filter-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    gap: 8px;
    overflow-x: auto;
}
.pills { display: flex; gap: 6px; flex-shrink: 0; }
.pill {
    font-size: 12px;
    padding: 4px 13px;
    border-radius: 20px;
    border: 1px solid var(--border-md);
    color: var(--text-2);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: .12s;
}
.pill:hover { background: var(--bg); text-decoration: none; }
.pill.active { background: var(--purple-lt); color: var(--purple-dk); border-color: #AFA9EC; font-weight: 500; text-decoration: none; }
.sort-select {
    font-size: 12px;
    color: var(--text-2);
    border: 1px solid var(--border);
    background: transparent;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
}

/* ─── SITE CARD ─────────────────────────────────────────── */
.site-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 14px;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
}
.site-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.logo-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -1px;
    flex-shrink: 0;
}
.lb-purple { background: var(--purple-lt); color: var(--purple-dk); }
.lb-teal   { background: var(--teal-lt);   color: #0F6E56; }
.lb-coral  { background: var(--coral-lt);  color: #993C1D; }
.lb-blue   { background: var(--blue-lt);   color: #185FA5; }
.lb-amber  { background: var(--amber-lt);  color: var(--amber); }
.lb-green  { background: var(--green-lt);  color: var(--green); }
.lb-pink   { background: var(--pink-lt);   color: #993556; }

.card-body { flex: 1; min-width: 0; }
.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.site-title-link { text-decoration: none; }
.site-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.site-url { font-size: 11px; color: var(--text-3); }
.card-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }

.cat-badge {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}
.status-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-3);
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-online  { background: var(--teal); }
.status-slow    { background: var(--amber); }
.status-offline { background: #e74c3c; }
.status-pending { background: var(--text-3); }

.ai-comment {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.65;
    border-left: 3px solid var(--purple-lt);
    padding-left: 10px;
    margin: 9px 0;
    font-style: italic;
}
.ai-comment.pending { color: var(--text-3); font-style: normal; }

.card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 8px;
    background: var(--bg);
    color: var(--text-2);
    border: 1px solid var(--border);
}
.score-badge {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* ─── AD BLOCK (kart arası) ─────────────────────────────── */
.ad-block {
    background: var(--bg-card);
    border: 1px dashed var(--border-md);
    border-radius: var(--radius);
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.ad-block-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.ad-block-title { font-size: 13px; font-weight: 600; color: var(--text); font-family: 'Outfit', sans-serif; }
.ad-block-desc  { font-size: 12px; color: var(--text-2); }
.ad-block-cta   { font-size: 12px; font-weight: 500; padding: 7px 16px; border-radius: var(--radius-sm); background: var(--purple); color: #fff; flex-shrink: 0; white-space: nowrap; }
.ad-block-cta:hover { background: var(--purple-dk); text-decoration: none; color: #fff; }

/* ─── SIDEBAR ────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 12px; }
.sb-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
}
.sb-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.sb-title-dot { width: 6px; height: 6px; border-radius: 50%; }

.sb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.sb-item:last-child { border-bottom: none; }
.sb-item:hover { opacity: .75; }
.sb-logo {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sb-url  { font-size: 11px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.sb-time { font-size: 10px; color: var(--text-3); flex-shrink: 0; }

/* Sidebar reklam */
.sb-ad {
    border: 1px dashed var(--border-md);
    border-radius: var(--radius);
    padding: 10px;
    text-align: center;
    background: #fafaf8;
}
.sb-ad-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.sb-ad-img {
    width: 100%;
    min-height: 90px;
    background: #f0effa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--text-3);
    border: 1px dashed var(--border);
    overflow: hidden;
}
.sb-ad-img img { width: 100%; height: 100%; object-fit: cover; }
.sb-ad-cta { display: block; margin-top: 6px; font-size: 11px; font-weight: 500; color: var(--purple); }

/* Stats grid */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.stat-item { background: var(--bg); border-radius: var(--radius-sm); padding: 8px; text-align: center; }
.stat-num { font-size: 16px; font-weight: 700; font-family: 'Outfit', sans-serif; color: var(--text); }
.stat-lbl { font-size: 9px; color: var(--text-3); margin-top: 1px; text-transform: uppercase; letter-spacing: .3px; }

/* ─── FORMS ─────────────────────────────────────────────── */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 40px auto;
}
.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--text-2); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: var(--text-2); margin-bottom: 5px; }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border-md);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-card);
    color: var(--text);
    transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(127,119,221,.12);
}
.form-textarea { min-height: 80px; resize: vertical; }
.form-hint { font-size: 11px; color: var(--text-3); margin-top: 4px; }
.form-divider { text-align: center; color: var(--text-3); font-size: 12px; margin: 16px 0; position: relative; }
.form-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.form-divider span { background: var(--bg-card); padding: 0 10px; position: relative; }

/* ─── ALERTS ────────────────────────────────────────────── */
.alert {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.alert-error   { background: #fdf2f2; border: 1px solid #fbc2c2; color: #c0392b; }
.alert-success { background: #f0faf5; border: 1px solid #a3dbc0; color: #1e7d50; }
.alert-info    { background: var(--purple-lt); border: 1px solid #AFA9EC; color: var(--purple-dk); }
.alert-warning { background: var(--amber-lt); border: 1px solid #FAC775; color: var(--amber); }

/* ─── PAGINATION ────────────────────────────────────────── */
.pagination { display: flex; gap: 4px; justify-content: center; padding: 20px 0; }
.page-btn {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    border: 1px solid var(--border-md);
    color: var(--text-2);
    text-decoration: none;
}
.page-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.page-btn:hover:not(.active) { background: var(--bg); }

/* ─── ADMIN TABLE ───────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border-md); font-family: 'Outfit', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-3); background: var(--bg); }
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafaf8; }

/* ─── ADMIN LAYOUT ──────────────────────────────────────── */
.admin-wrap { display: grid; grid-template-columns: 200px 1fr; gap: 0; min-height: calc(100vh - 58px); }
.admin-sidebar { background: #1e1c2e; padding: 20px 0; }
.admin-nav-item {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: .1s;
}
.admin-nav-item:hover { color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }
.admin-nav-item.active { color: #fff; background: var(--purple); }
.admin-nav-group { padding: 14px 20px 4px; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); }
.admin-content { padding: 24px; background: var(--bg); }
.admin-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.admin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }

/* ─── SITE DETAIL ───────────────────────────────────────── */
.detail-hero { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; display: flex; gap: 20px; align-items: flex-start; }
.detail-logo { width: 70px; height: 70px; border-radius: 14px; font-size: 24px; font-weight: 700; font-family: 'Outfit', sans-serif; display: flex; align-items: center; justify-content: center; letter-spacing: -1px; flex-shrink: 0; }
.detail-score { font-size: 36px; font-weight: 700; font-family: 'Outfit', sans-serif; }
.detail-comment { font-size: 14px; line-height: 1.8; color: var(--text-2); border-left: 4px solid var(--purple-lt); padding-left: 14px; }
.detail-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.detail-section-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: #1e1c2e;
    color: rgba(255,255,255,.75);
    margin-top: auto;
}
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 40px 0 28px; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--purple); }
.footer-desc { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 220px; }
.footer-col-title { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 7px; text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 14px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.35); }
.footer-badges { display: flex; gap: 6px; }
.footer-badge { font-size: 9px; padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); }

/* ─── Page header ───────────────────────────────────────── */
.page-header { padding: 28px 0 4px; }
.page-header h1 { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 700; }
.page-header p { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* ─── Empty state ───────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-3); }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-2); }
.empty-state p { font-size: 13px; margin-bottom: 20px; }

/* ─── Badge / chips ─────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 8px; font-size: 11px; font-weight: 500; }
.badge-purple { background: var(--purple-lt); color: var(--purple-dk); }
.badge-success { background: var(--teal-lt);   color: #0F6E56; }
.badge-danger  { background: #fdf2f2; color: #c0392b; }

/* ─── Profile ───────────────────────────────────────────── */
.profile-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--purple-lt); color: var(--purple-dk);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; font-family: 'Outfit', sans-serif;
}
.api-provider-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color .15s;
}
.api-provider-card.selected { border-color: var(--purple); background: var(--purple-lt); }
.api-provider-card h4 { font-size: 13px; font-weight: 600; }
.api-provider-card p  { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ─── Loading spinner ───────────────────────────────────── */
.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--border-md); border-top-color: var(--purple); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .page-body { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .header-nav .btn-outline { display: none; }
    .admin-wrap { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

/* ═══════════════════════════════════════════════
   REKLAM ALANLARI — Yeni Stiller
   ═══════════════════════════════════════════════ */

/* ── Sidebar Reklam (text & görsel) ─────────────── */
.sb-ad-new {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,.13);
}
.sb-ad-new .ad-inner {
    padding: 16px 14px 14px;
    position: relative;
    z-index: 1;
}
.sb-ad-new .ad-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    border-radius: 4px;
    padding: 2px 7px;
    margin-bottom: 8px;
}
.sb-ad-new .ad-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 5px;
}
.sb-ad-new .ad-desc {
    font-size: 11px;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
    margin-bottom: 12px;
}
.sb-ad-new .ad-cta {
    display: inline-block;
    background: rgba(255,255,255,.22);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .15s;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.3);
}
.sb-ad-new .ad-cta:hover {
    background: rgba(255,255,255,.35);
    text-decoration: none;
    color: #fff;
}
/* Köşe dekoratif daire */
.sb-ad-new::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}
.sb-ad-new::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -10px;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}
/* Görsel reklam resmi */
.sb-ad-new .ad-img-wrap {
    width: 100%;
    height: 110px;
    overflow: hidden;
    display: block;
}
.sb-ad-new .ad-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Kart Arası Reklam ───────────────────────────── */
.ad-block-new {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.12);
    min-height: 72px;
}
.ad-block-new::before {
    content: '';
    position: absolute;
    top: -25px; right: -25px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}
.ad-block-new .abn-left { flex: 1; min-width: 0; position: relative; z-index: 1; }
.ad-block-new .abn-tag {
    font-size: 9px; font-weight: 600; letter-spacing: .6px;
    text-transform: uppercase; color: rgba(255,255,255,.7);
    margin-bottom: 4px;
}
.ad-block-new .abn-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 700; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ad-block-new .abn-desc {
    font-size: 11px; color: rgba(255,255,255,.75); margin-top: 2px;
}
.ad-block-new .abn-cta {
    background: rgba(255,255,255,.2);
    color: #fff; font-size: 12px; font-weight: 600;
    padding: 8px 18px; border-radius: 20px;
    text-decoration: none; white-space: nowrap;
    border: 1px solid rgba(255,255,255,.3);
    transition: background .15s;
    position: relative; z-index: 1;
    flex-shrink: 0;
}
.ad-block-new .abn-cta:hover {
    background: rgba(255,255,255,.33);
    text-decoration: none; color: #fff;
}

/* ── Header Bant Reklam ──────────────────────────── */
.header-ad-band-new {
    padding: 9px 0;
    text-align: center;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.header-ad-band-new .had-tag {
    font-size: 9px; font-weight: 600; letter-spacing: .6px;
    text-transform: uppercase;
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    padding: 2px 8px; border-radius: 4px;
    flex-shrink: 0;
}
.header-ad-band-new .had-text {
    color: #fff; font-weight: 500;
}
.header-ad-band-new .had-text a {
    color: #fff; text-decoration: underline; text-decoration-style: dotted;
}
.header-ad-band-new .had-cta {
    background: rgba(255,255,255,.22);
    color: #fff; font-size: 11px; font-weight: 600;
    padding: 4px 13px; border-radius: 20px;
    text-decoration: none; border: 1px solid rgba(255,255,255,.35);
    transition: background .15s; flex-shrink: 0;
}
.header-ad-band-new .had-cta:hover {
    background: rgba(255,255,255,.35);
    text-decoration: none; color: #fff;
}
