/* =============================================
   YENİ NESİL TASARIM SİSTEMİ
   ============================================= */

:root {
    --bg-main: #f4f6fb;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.2);
    --border-color: rgba(0, 0, 0, 0.08);
    --text-main: #0a0a1a;
    --text-muted: #5a5a7a;
    --text-light: #8a8aaa;
    --accent: #4ECDC4;
    --accent-2: #667eea;
    --accent-3: #764ba2;
    --gold: #f59e0b;
    --green: #10b981;
    --red: #ef4444;
    --purple: #8b5cf6;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(78, 205, 196, 0.3);
}

body.dark-mode {
    --bg-main: #0a0a1a;
    --bg-card: rgba(17, 17, 40, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0ff;
    --text-muted: #8a8aaa;
    --text-light: #5a5a7a;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.inceleme-pro {
    position: relative;
    padding: 0 0 80px;
}

.inceleme-pro::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: floatLight 10s infinite alternate ease-in-out;
}

.inceleme-pro::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: floatLight2 12s infinite alternate ease-in-out;
}

@keyframes floatLight {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

@keyframes floatLight2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, -50px) scale(1.2); }
}

.container-pro {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.icerik-alani { min-width: 0; }

.breadcrumb-pro {
    padding: 24px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.breadcrumb-pro a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-pro a:hover { color: var(--accent); }

.inceleme-ust-kart {
    position: relative;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
}

.inceleme-ust-kart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(78,205,196,0.05) 0%, rgba(102,126,234,0.05) 50%, rgba(118,75,162,0.05) 100%);
    z-index: -1;
}

.inceleme-ust-kart::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}

.ust-kart-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(78, 205, 196, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.inceleme-ust-kart h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 800px;
}

.inceleme-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.inceleme-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inceleme-meta i { color: var(--accent); }

.side-panel { position: relative; }
.side-panel-inner {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.puan-kart {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.puan-kart h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.puan-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.puan-circle svg {
    transform: rotate(-90deg);
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.puan-circle circle {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
}

.puan-circle .bg-circle { stroke: var(--border-color); }
.puan-circle .fg-circle {
    stroke: url(#gradientStroke);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.puan-circle .puan-text { position: absolute; text-align: center; }
.puan-circle .puan-text .sayi {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}
.puan-circle .puan-text .max {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.puan-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.puan-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.puan-bar-item .label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 80px;
    text-align: left;
}

.puan-bar-item .track {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.puan-bar-item .fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.puan-bar-item .fill.gold { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.puan-bar-item .fill.green { background: linear-gradient(90deg, #10b981, #34d399); }
.puan-bar-item .fill.purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.puan-bar-item .fill.blue { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.puan-bar-item .fill.red { background: linear-gradient(90deg, #ef4444, #f87171); }

.puan-bar-item .value {
    font-weight: 700;
    font-size: 14px;
    min-width: 24px;
    text-align: right;
    color: var(--text-main);
}

.arti-eksi-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.arti-eksi-pro .box {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-glass);
}

.arti-eksi-pro .box:hover {
    transform: translateY(-8px) scale(1.02);
}

.arti-eksi-pro .box.artilar {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.6));
    border-top: 5px solid var(--green);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.arti-eksi-pro .box.eksiler {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(255, 255, 255, 0.6));
    border-top: 5px solid var(--red);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
}

body.dark-mode .arti-eksi-pro .box.artilar {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(17, 17, 40, 0.6));
}

body.dark-mode .arti-eksi-pro .box.eksiler {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(17, 17, 40, 0.6));
}

.arti-eksi-pro .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.arti-eksi-pro .box h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -0.5px;
}

.arti-eksi-pro .box.artilar h3 {
    color: var(--green);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.arti-eksi-pro .box.eksiler h3 {
    color: var(--red);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.arti-eksi-pro .box h3 i {
    font-size: 40px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

.arti-eksi-pro .box.artilar h3 i {
    color: var(--green);
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.arti-eksi-pro .box.eksiler h3 i {
    color: var(--red);
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.5));
}

.arti-eksi-pro .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arti-eksi-pro .box ul li {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.arti-eksi-pro .box ul li:last-child { border-bottom: none; }

.arti-eksi-pro .box ul li i {
    margin-top: 2px;
    font-size: 22px;
    flex-shrink: 0;
}

.arti-eksi-pro .box.artilar ul li i { color: var(--green); }
.arti-eksi-pro .box.eksiler ul li i { color: var(--red); }

.inceleme-icerik-pro {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.inceleme-icerik-pro .kapak {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.icerik-metin {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-main);
}

.icerik-metin p { margin-bottom: 24px; }

.icerik-metin h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-left: 16px;
}

.icerik-metin h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border-radius: 10px;
}

.icerik-metin h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
}

.icerik-metin blockquote {
    border: none;
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 24px 0;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
}

.icerik-metin img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rakip-tablo {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    font-size: 15px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    min-width: 700px;
}

.rakip-tablo thead th {
    background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(102,126,234,0.1));
    color: var(--text-main);
    text-align: left;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-color);
}

.rakip-tablo tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.rakip-tablo tbody tr:last-child td { border-bottom: none; }
.rakip-tablo tbody tr:nth-child(even) { background: rgba(0, 0, 0, 0.02); }
.rakip-tablo tbody tr:hover { background: rgba(78, 205, 196, 0.05); }

.rakip-tablo td:first-child {
    font-weight: 700;
    color: var(--text-main);
    font-size: 16px;
}

.rakip-tablo td:nth-child(2) {
    font-weight: 700;
    color: var(--gold);
}

.rakip-tablo td i.durmum-icon { font-size: 18px; }
.rakip-tablo td i.durmum-icon.var { color: var(--green); }
.rakip-tablo td i.durmum-icon.yok { color: var(--red); }

.benzer-pro { margin-top: 48px; }
.benzer-pro h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.benzer-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.benzer-kart-pro {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.benzer-kart-pro:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.benzer-kart-pro img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.benzer-kart-pro .info { padding: 20px; }
.benzer-kart-pro .info h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
    color: var(--text-main);
}

.benzer-kart-pro .info h4 a {
    color: inherit;
    text-decoration: none;
}
.benzer-kart-pro .info h4 a:hover { color: var(--accent); }
.benzer-kart-pro .info .puan {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

@media (max-width: 1200px) {
    .container-pro { grid-template-columns: 1fr; }
    .side-panel-inner { position: relative; top: 0; }
}

@media (max-width: 992px) {
    .inceleme-ust-kart { padding: 40px 30px; }
    .inceleme-ust-kart h1 { font-size: 38px; }
    .inceleme-icerik-pro { padding: 30px; }
}

@media (max-width: 768px) {
    .inceleme-ust-kart { padding: 30px 20px; }
    .inceleme-ust-kart h1 { font-size: 30px; }
    .arti-eksi-pro { grid-template-columns: 1fr; }
    .inceleme-icerik-pro { padding: 20px; }
    .icerik-metin { font-size: 16px; }
    .puan-circle { width: 140px; height: 140px; margin: 0 auto; }
    .puan-circle svg { width: 140px; height: 140px; }
    .arti-eksi-pro .box h3 i { font-size: 32px; }
    .arti-eksi-pro .box ul li i { font-size: 18px; }
}
/* =============================================
   ★★★ MOBİL UYUMLU TABLO VE KARŞILAŞTIRMA ★★★
   ============================================= */

/* Tablolar - Yatay kaydırılabilir */
.rakip-tablo,
.ozellik-tablo-pro {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.rakip-tablo thead,
.ozellik-tablo-pro thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.rakip-tablo tbody,
.ozellik-tablo-pro tbody {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/* Yeni karşılaştırma grid sistemi */
.karsilastirma-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
}

.karsilastirma-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.3px;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.25);
}

.karsilastirma-baslik i {
    color: #ffd700;
    font-size: 20px;
}

.karsilastirma-satir {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 20px;
    padding: 16px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    align-items: center;
    transition: all 0.3s ease;
}

.karsilastirma-satir:hover {
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.12);
    transform: translateX(4px);
}

.karsilastirma-label {
    font-weight: 800;
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.karsilastirma-label i {
    font-size: 15px;
}

.karsilastirma-deger {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 500;
}

.karsilastirma-deger strong {
    display: block;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.karsilastirma-deger.winner {
    color: var(--green);
    font-weight: 800;
}

.karsilastirma-deger.winner::after {
    content: ' ✓';
    color: var(--green);
    font-weight: 900;
}

/* Tablo scrollbar */
.rakip-tablo::-webkit-scrollbar,
.ozellik-tablo-pro::-webkit-scrollbar {
    height: 6px;
}

.rakip-tablo::-webkit-scrollbar-track,
.ozellik-tablo-pro::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 3px;
}

.rakip-tablo::-webkit-scrollbar-thumb,
.ozellik-tablo-pro::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
    opacity: 0.6;
}

/* ★★★ MOBİL - TABLET ★★★ */
@media (max-width: 992px) {
    .karsilastirma-satir {
        grid-template-columns: 140px 1fr 1fr;
        gap: 14px;
        padding: 14px 18px;
    }
    
    .karsilastirma-label {
        font-size: 12px;
    }
    
    .karsilastirma-deger {
        font-size: 14px;
    }
}

/* ★★★ MOBİL - TELEFON ★★★ */
@media (max-width: 768px) {
    /* Tablolar */
    .rakip-tablo,
    .ozellik-tablo-pro {
        font-size: 13px;
        border-radius: var(--radius-md);
    }
    
    .rakip-tablo thead th,
    .ozellik-tablo-pro thead th {
        padding: 12px 14px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .rakip-tablo tbody td,
    .ozellik-tablo-pro tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .rakip-tablo td:first-child {
        font-size: 14px;
    }
    
    .ozellik-tablo-pro td:first-child {
        width: auto;
        font-size: 13px;
    }
    
    /* Karşılaştırma Grid - Mobil */
    .karsilastirma-grid {
        gap: 10px;
        margin: 24px 0;
    }
    
    .karsilastirma-baslik {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    
    .karsilastirma-baslik i {
        font-size: 17px;
    }
    
    .karsilastirma-satir {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 18px;
        border-radius: var(--radius-md);
    }
    
    .karsilastirma-satir:hover {
        transform: none;
    }
    
    .karsilastirma-label {
        font-size: 12px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--border-color);
        margin-bottom: 4px;
    }
    
    .karsilastirma-label i {
        font-size: 14px;
    }
    
    .karsilastirma-deger {
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .karsilastirma-deger:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .karsilastirma-deger strong {
        font-size: 10px;
        margin-bottom: 3px;
    }
}

/* ★★★ MOBİL - KÜÇÜK TELEFON ★★★ */
@media (max-width: 480px) {
    .rakip-tablo thead th,
    .ozellik-tablo-pro thead th {
        padding: 10px 12px;
        font-size: 10px;
    }
    
    .rakip-tablo tbody td,
    .ozellik-tablo-pro tbody td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .karsilastirma-baslik {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .karsilastirma-satir {
        padding: 14px 16px;
    }
    
    .karsilastirma-label {
        font-size: 11px;
    }
    
    .karsilastirma-deger {
        font-size: 13px;
    }
}

/* ★★★ DARK MODE ★★★ */
body.dark-mode .karsilastirma-satir {
    background: rgba(17, 17, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .karsilastirma-satir:hover {
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
}

body.dark-mode .karsilastirma-deger {
    color: var(--dark-text);
}

body.dark-mode .karsilastirma-deger strong {
    color: var(--dark-text-muted);
}

body.dark-mode .karsilastirma-label {
    color: #4ECDC4;
}

/* ★★★ İÇERİK METİN İÇİ MOBİL UYUM ★★★ */
@media (max-width: 768px) {
    .icerik-metin table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .icerik-metin iframe,
    .icerik-metin video {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
    }
    
    .icerik-metin img {
        width: 100% !important;
        height: auto !important;
    }
}

/* =============================================
   ★★★ TEKNİK ÖZELLİKLER - KART TASARIM ★★★
   ============================================= */

.teknik-ozellikler {
    margin: 48px 0;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.teknik-baslik {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.teknik-baslik i {
    font-size: 28px;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(102, 126, 234, 0.15));
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
    flex-shrink: 0;
}

.teknik-baslik h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Grid - Masaüstü 2 sütun */
.teknik-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.teknik-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-main);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teknik-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teknik-item:hover {
    transform: translateY(-3px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.1);
}

.teknik-item:hover::before {
    opacity: 1;
}

.teknik-ikon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.12), rgba(102, 126, 234, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 17px;
    transition: all 0.3s ease;
}

.teknik-item:hover .teknik-ikon {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.35);
    transform: scale(1.05);
}

.teknik-icerik {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
}

.teknik-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.teknik-deger {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ★★★ MOBİL ★★★ */
@media (max-width: 768px) {
    .teknik-ozellikler {
        padding: 20px 16px;
        margin: 32px 0;
        border-radius: var(--radius-lg);
    }
    
    .teknik-baslik {
        margin-bottom: 20px;
        padding-bottom: 16px;
        gap: 12px;
    }
    
    .teknik-baslik i {
        width: 44px;
        height: 44px;
        font-size: 22px;
        border-radius: 12px;
    }
    
    .teknik-baslik h3 {
        font-size: 19px;
    }
    
    .teknik-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .teknik-item {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .teknik-ikon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .teknik-label {
        font-size: 10px;
        letter-spacing: 0.6px;
    }
    
    .teknik-deger {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .teknik-ozellikler {
        padding: 16px 12px;
        border-radius: var(--radius-md);
    }
    
    .teknik-baslik h3 { font-size: 17px; }
    .teknik-baslik i { width: 40px; height: 40px; font-size: 20px; }
    
    .teknik-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .teknik-ikon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .teknik-label { font-size: 9px; }
    .teknik-deger { font-size: 13px; }
}

/* ★★★ DARK MODE ★★★ */
body.dark-mode .teknik-ozellikler {
    background: var(--dark-bg-card);
    border-color: var(--dark-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

body.dark-mode .teknik-baslik {
    border-bottom-color: var(--dark-border);
}

body.dark-mode .teknik-baslik h3 {
    background: linear-gradient(135deg, var(--dark-text), var(--dark-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .teknik-item {
    background: rgba(17, 17, 40, 0.5);
    border-color: var(--dark-border);
}

body.dark-mode .teknik-item:hover {
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

body.dark-mode .teknik-ikon {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(102, 126, 234, 0.2));
    color: #4ECDC4;
}

body.dark-mode .teknik-item:hover .teknik-ikon {
    background: linear-gradient(135deg, #4ECDC4, #667eea);
    color: #fff;
}

body.dark-mode .teknik-label {
    color: var(--dark-text-muted);
}

body.dark-mode .teknik-deger {
    color: var(--dark-text);
}
