:root {
    /* Bilişim Testleri - Açık Mavi & Modern Deniz Paleti */
    --ana-renk: #0284c7;
    --ana-renk2: #38bdf8;
    --ana-renk-koyu: #0369a1;
    --ana-renk-acik: #e0f2fe;
    --ana-renk-ultra-acik: #f0f9ff;
    --vurgu-cyan: #06b6d4;
    --vurgu-yesil: #10b981;
    --vurgu-kirmizi: #ef4444;
    --vurgu-sari: #f59e0b;

    /* Arka Plan & Kart Renkleri */
    --arka-plan: #f0f7fc;
    --arka-plan-kart: #ffffff;
    --arka-plan-hover: #e0f2fe;
    --kutu-border: #dbeafe;
    --kutu-shadow: 0 4px 18px -2px rgba(2, 132, 199, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --kutu-shadow-hover: 0 10px 25px -3px rgba(2, 132, 199, 0.16), 0 4px 8px -2px rgba(15, 23, 42, 0.05);

    /* Metin & Tipografi */
    --ust-menu-yazi-rengi: #ffffff;
    --kutu-baslik-rengi: #0f172a;
    --yazi-baslik-rengi: #0f172a;
    --yazi-alt-baslik-rengi: #0284c7;
    --footer-baslik-rengi: #38bdf8;
    --yazi-ana: #1e293b;
    --yazi-ikincil: #64748b;
    --link-hover: #0284c7;

    /* Radius & Tr */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

*,
*::before,
*::after {
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
}

html {
    background-color: var(--arka-plan);
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: none
}

ins {
    text-decoration: none
}

:focus {
    outline: 0
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    width: 100%;
    height: auto;
    display: block
}

body {
    line-height: 1.6;
    font: normal 14px 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: block;
    background: var(--arka-plan);
    color: var(--yazi-ana);
}

a,
a:hover,
a:link,
a:visited {
    text-decoration: none;
    outline: 0
}

a {
    text-decoration: none;
    color: var(--yazi-ana);
    font-size: 14px;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--link-hover);
    text-decoration: none;
}

input[type=password],
input[type=text] {
    background: #fff;
    min-height: 38px;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    color: #0f172a;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type=password]:focus,
input[type=text]:focus {
    border-color: var(--ana-renk);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

input[type=password]:hover,
input[type=text]:hover {
    border-color: #94a3b8;
}

select {
    border: 1.5px solid #cbd5e1;
    min-height: 38px;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
}

select:hover {
    border-color: #94a3b8;
}

option {
    padding: 4px;
}

textarea {
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    width: 100%;
    min-height: 90px;
    padding: 10px 12px;
    font: normal 14px 'Poppins', 'Segoe UI', sans-serif;
    color: #0f172a;
    transition: border-color 0.2s ease;
}

textarea:focus {
    border-color: var(--ana-renk);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

button,
input[type=button],
input[type=submit] {
    width: 100%;
    margin: 14px 0;
    padding: 13px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover,
input[type=button]:hover,
input[type=submit]:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    transform: translateY(-2px);
}

button:active,
input[type=button]:active,
input[type=submit]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2);
}

::selection {
    background-color: #bae6fd;
    color: #0369a1;
}

::moz-selection {
    background-color: #bae6fd;
    color: #0369a1;
}

::webkit-selection {
    background-color: #bae6fd;
    color: #0369a1;
}

.oval1 {
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px
}

.oval2 {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.oval3 {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.oval4 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.oval5 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.ustsol_ovalyok {
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0
}

.ustsag_ovalyok {
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-right-radius: 0
}

.altsol_ovalyok {
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0
}

.altsag_ovalyok {
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0
}

.sayfalama {
    margin-top: 2px
}

.sayfalama ul {
    height: 32px;
    text-align: center;
    padding-left: 0;
    padding: 7px;
    padding-right: 0;
    padding-bottom: 2px;
    float: right
}

.sayfalama ul .secili {
    border: 1px solid #16a085;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 13px;
    padding-right: 13px;
    margin-top: -2px;
    margin-left: 2px;
    margin-right: 2px;
    background: #1abc9c;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px
}

.sayfalama ul li {
    float: left;
    margin: 2px
}

.sayfalama ul li a {
    color: #16a085;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 13px;
    padding-right: 13px;
    border: 1px solid #16a085;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px
}

.sayfalama ul li a:hover {
    color: #fff;
    background: #1abc9c
}

.hata {
    width: 100%;
    margin: 0;
    border: 1px solid #e0011b;
    background: #e0011b;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px
}

.hata .baslik {
    color: #fff;
    padding-top: 3px;
    padding-left: 6px;
    font-size: 16px;
    font-weight: 700
}

.hata ul {
    background: #fbe3e4;
    margin: 0;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px
}

.hata ul li {
    background: url(/Images/mini_error.png) no-repeat;
    background-position: 4px 3px;
    margin: 0;
    padding: 10px;
    font-size: 13.5px;
    padding-left: 10px;
    list-style-type: none
}

.hata a {
    color: #d12f19
}

.onay {
    width: calc(100% - 2px);
    margin: 0;
    border: 1px solid #72c868;
    background: #72c868;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px
}

.onay .baslik {
    color: #fff;
    padding-top: 3px;
    padding-left: 6px;
    font-size: 16px;
    font-weight: 700
}

.onay ul {
    background: #ddf2db;
    margin: 5px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px
}

.onay ul li {
    background: url(/Images/mini_error.png) no-repeat;
    background-position: 4px 3px;
    padding: 1px;
    font-size: 13.5px;
    padding-left: 10px
}

.onay a {
    color: #d12f19
}

.clear {
    clear: both
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:start:decrement {
    display: none
}

::-webkit-scrollbar-track-piece {
    background-color: #f5f4f4
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 1px;
    background: #dcdcdc
}

#dis_cerceve {
    margin: auto
}

@keyframes ust {

    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }

}

header {
    margin: 0 auto !important;
    padding: 0;
    display: flex;
    align-items: center;
    height: 72px;
    min-height: 72px;
    width: 100%;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 45%, #0ea5e9 75%, #38bdf8 100%);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.22);
    z-index: 1000;
    position: relative;
    box-sizing: border-box;
}

header #kutu {
    margin: 0 auto;
    height: 100%;
    width: 1250px;
    max-width: calc(100% - 30px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

header #kutu #ust_sol {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    float: none;
    width: auto;
}

header #kutu #ust_sol #logo {
    display: flex;
    align-items: center;
    float: none;
    transition: transform 0.2s ease;
}

header #kutu #ust_sol #logo:hover {
    transform: scale(1.02);
}

header #kutu #ust_sol #logo img {
    width: 180px;
    height: auto;
    max-height: 48px;
    display: block;
}

.menu-toggle {
    display: none;
}

header #kutu #ust_orta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    float: none;
    width: auto;
    flex: 1;
}

#ust-menu {
    width: auto;
    margin: 0 0 0 auto;
    float: none;
}

#ust-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
}

#ust-menu ul>li {
    float: none;
    margin: 0;
}

#ust-menu ul>li>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all .25s ease;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
}

#ust-menu ul>li>a:hover {
    background-color: #ffffff;
    color: #0284c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    border-color: #ffffff;
}

#ust-menu ul>li>a:focus {
    background: #ffffff;
    color: #0284c7;
}

#ust-menu ul>li>a:hover::after {
    width: 100%
}

#ust-menu ul>li>label {
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

#ust-menu ul>li>label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    height: 5px;
    background-color: #222;
    transition: all .2s
}

#ust-menu ul>li>label::after {
    color: #fff
}

#ust-menu ul>li.acilan {
    position: relative;
    z-index: 9999
}

#ust-menu ul>li.acilan:hover .acilan-menu {
    top: 100%;
    opacity: 1;
    visibility: visible
}

#ust-menu ul>li.acilan .acilan-menu {
    width: 180px;
    position: absolute;
    height: auto;
    top: 400%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    padding: 5px 0 5px 0;
    transition: all 250ms;
    box-shadow: 0 0 15px rgba(0, 0, 0, .18);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 1)
}

#ust-menu ul>li.acilan .acilan-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    margin-top: -11px;
    margin-left: 20px
}

#ust-menu ul>li.acilan .acilan-menu li {
    width: 100%;
    padding: 0;
    margin: 0
}

#ust-menu ul>li.acilan .acilan-menu li a {
    color: #000;
    width: calc(100% - 40px);
    display: block;
    font-size: 14px;
    padding: 7px 20px;
    margin: 0
}

#ust-menu ul>li.acilan .acilan-menu li a::after {
    display: none
}

#ust-menu ul>li.acilan .acilan-menu li a:hover {
    color: #0284c7;
    background: #f0f9ff;
}

.menu-toggle {
    display: none;
    float: left;
    color: #ffffff;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin: 10px 5px 5px 5px;
    text-align: center;
    line-height: 24px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    border-radius: 50%;
}

.menu-toggle:hover {
    color: #fff;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    cursor: pointer;
}

.arama {
    display: none;
    float: right;
    width: 44px;
    height: 44px;
    vertical-align: auto;
    padding: 10px;
    margin: 10px 5px 5px 5px;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    color: #ffffff;
}

.arama:hover {
    color: #fff;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

.arama-kutusu {
    background-color: #f7f7f7;
    transform: scale(0);
    transform-origin: 100% 0;
    display: none;
    font-size: 30px;
    width: 75px;
    padding: 10px 0 10px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .6)
}

.arama-kutusu i {
    position: absolute;
    vertical-align: middle;
    padding: 10px;
    margin-left: 5px;
    font-size: 20px
}

.arama-kutusu form input[type=text] {
    height: 50px;
    font-size: 30px;
    background-color: #f7f7f7;
    border: none;
    padding-left: 50px;
    width: calc(100% - 20px);
    margin: 0 10px 0 10px;
    box-sizing: border-box;
    font: normal 20px Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    border-bottom: 3px solid #000
}

.arama-kutusu input:focus {
    outline: 0
}

#arama-check {
    display: none
}

#arama-check:checked+div.arama-kutusu {
    position: absolute;
    z-index: 9999;
    display: block;
    animation: trans-in .5s ease;
    animation-fill-mode: forwards;
    width: 100%
}

#arama-check:checked .arka-siyah {
    display: block
}

@keyframes trans-in {

    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }

}

header #kutu #ust_sag #uye_girisi {
    float: right;
    margin: 10px 0;
    padding: 0;
    border: none;
}

.uye-linkler {
    display: flex;
    gap: 8px;
    align-items: center;
}

.uye-linkler a {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ust-menu-yazi-rengi);
}

.uye-linkler a i {
    font-size: 14px;
}

.uye-linkler a:first-child {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.uye-linkler a:first-child:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.uye-linkler a:last-child {
    background: var(--kutu-baslik-rengi);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.uye-linkler a:last-child:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Kullanıcı Menüsü */
.kullanici-menu {
    position: relative;
    cursor: pointer;
}

.kullanici-menu>a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    color: var(--ust-menu-yazi-rengi) !important;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.kullanici-menu:hover>a {
    background: rgba(255, 255, 255, 0.4);
}

.kullanici-alt-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.kullanici-menu:hover .kullanici-alt-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kullanici-alt-menu a {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.kullanici-alt-menu a:hover {
    background: #f8f9fa;
    color: var(--ana-renk);
    padding-left: 18px;
}

.kullanici-alt-menu a i {
    width: 16px;
    color: #a0aec0;
}


main {
    width: 1250px;
    max-width: calc(100% - 30px);
    margin: 10px auto 50px auto;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
}

main #orta_sol {
    float: left;
    width: calc(100% - 315px);
    max-width: 935px;
    margin-right: 15px;
    height: auto;
    box-sizing: border-box;
}

main #orta_sag {
    float: right;
    width: 300px;
    margin: 0;
    box-sizing: border-box;
}

footer {
    width: 100%;
    margin-bottom: 20px;
}

footer #alt_bolge {
    margin: 0 auto;
    width: 1250px;
    max-width: calc(100% - 30px);
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 18px 60px -21px rgba(201, 195, 201, 1);
    -moz-box-shadow: 0 18px 60px -21px rgba(201, 195, 201, 1);
    box-shadow: 0 18px 60px -21px rgba(201, 195, 201, 1);
    box-sizing: border-box;
    border-radius: 8px;
}

footer #footer_sol {
    display: inline-block;
    float: left;
    width: 30%
}

footer #footer_sol .site_adi {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--footer-baslik-rengi)
}

footer #footer_sol .site_aciklama {
    font-size: 12px
}

footer #footer_sag {
    display: inline-block;
    float: left;
    width: 70%
}

footer #footer_sag .alt-menu {
    width: calc((100% / 3) - 10px);
    margin: 0 5px 0 5px;
    float: left
}

footer #footer_sag .alt-menu li a {
    margin-bottom: 2px;
    background: #f9f9f9;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 40px;
    padding: 0 10px;
    transition: all .3s;
    border-left: 4px solid #f1f1f1;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

footer #footer_sag .alt-menu li a:hover {
    color: #000;
    background: #f1f1f1;
    border-left: 4px solid #e1e1e1
}

footer #footer_sag .alt-menu .baslik {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--footer-baslik-rengi);
    margin-bottom: 5px
}

footer #en_alt {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center
}

/* ==========================================================================
   SAYFA YOLU (BREADCRUMBS) - MODERN & CAROUSEL SCROLLABLE
   ========================================================================== */
.breadcrumbs-container {
    width: 1250px;
    max-width: calc(100% - 30px);
    margin: 14px auto 10px auto;
    box-sizing: border-box;
}

.breadcrumbs {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 7px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
}

.breadcrumbs__list::-webkit-scrollbar {
    display: none;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 13px;
    color: #475569;
}

.breadcrumbs__item--home .breadcrumbs__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.breadcrumbs__item--home .breadcrumbs__link:hover {
    background: var(--ana-renk, #0284c7);
    color: #ffffff;
    transform: scale(1.06);
}

.breadcrumbs__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    color: #cbd5e1;
    font-size: 10px;
    flex-shrink: 0;
    user-select: none;
}

.breadcrumbs__link {
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.breadcrumbs__link:hover {
    color: var(--link-hover, #0284c7);
}

.breadcrumbs__current {
    color: #0f172a;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.kutu {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: var(--radius-md, 12px);
    border: 1px solid var(--kutu-border, #dbeafe);
    box-shadow: var(--kutu-shadow, 0 4px 18px -2px rgba(2, 132, 199, 0.08));
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kutu:hover {
    box-shadow: var(--kutu-shadow-hover, 0 10px 25px -3px rgba(2, 132, 199, 0.16));
    border-color: #bae6fd;
}

.kutu .kutu_baslik {
    padding: 13px 18px;
    margin: 0;
    font-size: 15.5px;
    font-weight: 700;
    border-radius: 0;
    background: linear-gradient(to right, #f0f9ff 0%, #ffffff 100%);
    border-bottom: 2.5px solid var(--ana-renk, #0284c7);
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.2px;
}

.kutu .kutu_baslik i {
    color: var(--ana-renk, #0284c7);
    font-size: 15px;
}

.kutu .kutu_baslik .tumunu_gor {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #0284c7;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 4px 14px;
    border-radius: var(--radius-full, 9999px);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: auto;
    line-height: 1.4;
}

.kutu .kutu_baslik .tumunu_gor i {
    font-size: 10px;
    color: #0284c7;
    transition: transform 0.2s ease, color 0.2s ease;
}

.kutu .kutu_baslik .tumunu_gor:hover {
    color: #ffffff;
    background: var(--ana-renk, #0284c7);
    border-color: var(--ana-renk, #0284c7);
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.3);
    transform: translateX(2px);
}

.kutu .kutu_baslik .tumunu_gor:hover i {
    color: #ffffff;
    transform: translateX(2px);
}

.kutu .kutu_icerik {
    display: block;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
}

.kutu .kutu_beyaz {
    background: #ffffff;
}

.kutu .kutu_icerik p {
    margin: 15px
}

.kategori-ust {
    margin-bottom: 10px;
    display: block;
    background: var(--ana-renk);
    animation: ust 10s ease infinite;
    background-size: 400% 400%;
    color: #fff;
    padding: 15px;
    border-radius: 3px;
    text-shadow: 1px 1px 2px #7f7e7e
}

.kategori-ust .kategori-baslik {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center
}

.kategori-ust .kategori-aciklama {
    font-size: 14px;
    text-align: center
}

.yayin-akisi-baslik {
    color: var(--ana-renk, #0284c7);
    font-size: 24px;
    margin: 0
}

.yayin-akisi {
    width: 100%;
    position: relative;
    float: left;
    margin: 20px 0 0 10px
}

.yayin-akisi:before {
    content: "";
    width: 1px;
    left: 25px;
    top: 0;
    bottom: 0;
    background-color: #cec;
    position: absolute
}

.yayin-akisi ul {
    width: 100%;
    float: left
}

.yayin-akisi ul li {
    float: left;
    width: calc(100% - 80px);
    padding-left: 80px;
    margin-bottom: 20px;
    position: relative
}

.yayin-akisi ul li .yayin-akisi-resim {
    float: left;
    width: 260px;
    height: 146px;
    overflow: hidden;
    border-radius: 3px;
    margin-right: 20px
}

.yayin-akisi ul li .yayin-akisi-resim img {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, .1);
    border: 1px solid #e5e5e5
}

.yayin-akisi ul li .yayin-akisi-sol {
    position: absolute;
    left: -20px;
    background: #fff;
    top: 50%;
    margin-top: -35px;
    padding: 10px;
    width: 70px
}

.yayin-akisi ul li .yayin-akisi-sol .yayin-akisi-icon {
    display: block;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    border-radius: 17px;
    position: relative;
    margin: auto;
    background: #fbdc2b url(../images/wifi.png) no-repeat;
    background-size: 50%;
    background-position: center center
}

.yayin-akisi ul li .yayin-akisi-sol .yayin-akisi-zaman {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
    text-align: center;
    background: #fff
}

.yayin-akisi ul li .yayin-akisi-kategori {
    margin-top: 10px;
    float: left;
    display: block;
    width: calc(100% - 290px);
    overflow: hidden
}

.yayin-akisi ul li .yayin-akisi-kategori a {
    text-transform: uppercase;
    font-size: 12px
}

.yayin-akisi ul li .yayin-akisi-adi {
    float: left;
    width: calc(100% - 290px);
    margin-top: 5px;
    max-height: 84px;
    overflow: hidden;
    display: block
}

.yayin-akisi ul li .yayin-akisi-adi a {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700
}

.yayin-akisi ul li .yayin-akisi-adi a:hover {
    color: var(--ana-renk, #0284c7);
}

.yayin-akisi ul li .yayin-akisi-detay {
    display: inline-block;
    float: left;
    width: calc(100% - 290px);
    margin-top: 10px;
    overflow: hidden;
    display: inline-block
}

.yayin-akisi ul li .yayin-akisi-detay a {
    min-width: 30px;
    float: left;
    padding-right: 15px;
    margin-right: 15px;
    font-size: 12px;
    font-weight: 400
}

.yayin-akisi ul li .yayin-akisi-detay .yayin-akisi-yazar a {
    font-weight: 400;
    font-size: 11px
}

.yayin-akisi .yayin-akisi-detay .responsive_kategori {
    display: none
}

.yayin-akisi .yayin-akisi-detay .responsive_zaman {
    display: none
}

.anasayfa-widget {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.anasayfa-widget ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.anasayfa-widget ul li {
    background: #ffffff;
    border: 1px solid var(--kutu-border, #dbeafe);
    border-radius: var(--radius-md, 12px);
    padding: 12px;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.anasayfa-widget ul li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(2, 132, 199, 0.14);
    border-color: #7dd3fc;
}

.anasayfa-widget ul li a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #0f172a;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.anasayfa-widget ul li .yayin-akisi-resim {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-sm, 8px);
    overflow: hidden;
    background: #f0f7fc;
    position: relative;
}

.anasayfa-widget ul li .yayin-akisi-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.anasayfa-widget ul li:hover .yayin-akisi-resim img {
    transform: scale(1.06);
}

.anasayfa-widget ul li .yayin-akisi-adi {
    margin-top: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.anasayfa-widget ul li:hover .yayin-akisi-adi {
    color: var(--ana-renk, #0284c7);
}

.anasayfa-widget ul li .yayin-akisi-detay {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid #f1f5f9;
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.anasayfa-widget ul li .yayin-akisi-detay i {
    color: #0284c7;
    margin-right: 3px;
}

.kategoriler {
    display: inline-block;
    width: calc(100% - 10px);
    list-style-type: none;
    padding: 5px;
}

.kategoriler {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.kategoriler a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--radius-sm, 8px);
    border: 1px solid #e0f2fe;
    border-left: 3.5px solid var(--ana-renk, #0284c7);
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.kategoriler a span {
    flex: 1;
}

.kategoriler a i {
    font-size: 11px;
    color: #0284c7;
    transition: transform 0.2s ease, color 0.2s ease;
}

.kategoriler a:hover {
    background: #ffffff;
    color: #0284c7;
    border-color: #bae6fd;
    border-left-color: var(--ana-renk, #0284c7);
    box-shadow: 0 3px 8px rgba(2, 132, 199, 0.1);
    transform: translateX(4px);
}

.kategoriler a:hover i {
    color: var(--ana-renk, #0284c7);
    transform: translateX(3px);
}

.populer_haberler {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.populer_haberler ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.populer_haberler ul li {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f1f5f9;
    list-style: none;
    display: block;
    position: relative;
    box-sizing: border-box;
}

.populer_haberler ul li:last-child {
    border-bottom: none;
}

.populer_haberler ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.populer_haberler ul li a:hover {
    background-color: #f0f9ff;
}

.populer_haberler ul li a:hover .populer_baslik {
    color: var(--ana-renk, #0284c7);
}

.populer_resim_kutu {
    width: 80px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.populer_resim_kutu .populer_resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.populer_haberler ul li a:hover .populer_resim {
    transform: scale(1.05);
}

.populer_bilgi {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.populer_baslik {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.populer_haberler ul li a:hover .populer_baslik {
    color: var(--link-hover, #0284c7);
}

.populer_tarih {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    padding: 0;
    margin: 0;
}

.populer_tarih i {
    font-size: 10px;
}

.sidebar-buyuk-listele {
    width: 300px;
    height: 180px;
    margin-bottom: 5px;
    display: block;
    transition: .5s;
    z-index: 2;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
    -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
    box-shadow: 0 2px 1px rgba(0, 0, 0, .07)
}

.sidebar-buyuk-listele img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    transition: transform .2s
}

.sidebar-buyuk-listele:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(0, 0, 0, .12);
    opacity: .9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: linear-gradient(to bottom, transparent 70%, #000 100%)
}

.sidebar-buyuk-listele span {
    display: block;
    position: absolute;
    bottom: 0;
    padding: 10px;
    margin: 5px;
    word-wrap: break-word;
    text-shadow: 0 5px px #000;
    font-weight: 900;
    font-size: 16px;
    z-index: 222;
    transition: .4s;
    color: #fff
}

.kutu_konu_listele {
    width: 300px;
    list-style: none;
    margin-top: 5px
}

.kutu_konu_listele li {
    width: 300px;
    display: inline-block;
    margin-bottom: 5px
}

.kutu_konu_listele li .konu_resim {
    float: left;
    width: 100px;
    height: 60px;
    margin-right: 5px;
    padding: 1px;
    border: 1px solid #eee
}

.kutu_konu_listele li .konu_resim img {
    width: 100px;
    height: 60px
}

.kutu_konu_listele li .konu_baslik {
    float: right;
    font-size: 15px;
    font-weight: 700;
    width: 191px;
    height: 25px;
    padding-top: 5px;
    text-align: left;
    z-index: 9999
}

.sag_kutu {
    width: 100%;
    height: auto;
    margin: 0;
    -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
    -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
    box-shadow: 0 2px 1px rgba(0, 0, 0, .07)
}

.sag_kutu_baslik {
    width: calc(100% - 40 px);
    background: #e1e1e1;
    background: linear-gradient(-20deg, #ebebeb, #f5f4f4, #ecebeb);
    border: 1px solid #e1e1e1;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 10px;
    color: #000;
    font-weight: 700;
    font-size: 15px
}

.sag_kutu_alt {
    height: auto;
    border: 1px solid #e1e1e1;
    padding: 5px 5px 3px 5px;
    background-color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-right-radius: 0
}

.sayfa {
    width: calc(100% - 30px);
    padding: 15px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #fff
}

.sayfa_baslik {
    width: calc(100% - 20px);
    padding: 10px 10px 10px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 1.8em;
    background: var(--ana-renk);
    color: var(--yazi-baslik-rengi);
    border-radius: 3px;
    animation: ust 10s ease infinite;
    background: linear-gradient(-60deg, var(--ana-renk), var(--ana-renk2));
    background-size: 400% 400%;
    font-size: 1.8em
}

.sayfa_icerik {
    width: 100%;
    margin: 10px 0 10px 0
}

.sayfa .yazi_alani {
    background-color: #fff;
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px
}

.youtube-player {
    position: relative;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.youtube-player img {
    width: 100%;
    height: auto
}

.youtube-player .play {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 60px solid #fff;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .5))
}

.sayfa .sayfa_baslik,
.sayfa .yazi_baslik {
    width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, #ea580c 0%, #d97706 60%, #f59e0b 100%) !important;
    color: #ffffff !important;
    padding: 22px 26px !important;
    border-radius: 10px !important;
    margin: 0 0 16px 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
    line-height: 1.35 !important;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.18) !important;
    border: none !important;
    animation: none !important;
}

.sayfa .yazi_aciklama {
    padding: 20px;
    padding: 5px 0 0 0;
    margin-bottom: 10px
}

.sayfa .yazi_resim {
    width: 100%;
    height: auto;
    margin: 10px 0 0 0;
    object-fit: cover;
    background-size: cover;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

/* ==========================================================================
   İÇİNDEKİLER (TABLE OF CONTENTS) & YAZI GÜNCELLEME
   ========================================================================== */
.yazi_guncelleme_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 14px 0 18px 0;
    border: 1px solid #e2e8f0;
}

.yazi_guncelleme_badge i {
    color: #94a3b8;
    font-size: 13px;
}

.icindekiler-kutusu {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--ana-renk, #0284c7);
    border-radius: 10px;
    padding: 14px 18px;
    margin: 20px 0 28px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.icindekiler-baslik {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding: 2px 0;
    box-sizing: border-box;
}

.icindekiler-baslik-sol {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.icindekiler-baslik-sol i {
    color: var(--ana-renk, #0284c7);
    font-size: 15px;
}

.icindekiler-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.icindekiler-baslik:hover .icindekiler-toggle-btn {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

.icindekiler-toggle-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.icindekiler-kutusu.kapali .icindekiler-toggle-btn i {
    transform: rotate(180deg);
}

.icindekiler-icerik {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.icindekiler-kutusu.kapali .icindekiler-icerik {
    display: none;
}

#icindekiler {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #icindekiler {
        grid-template-columns: minmax(0, 1fr);
    }
}

#icindekiler li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

#icindekiler li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

#icindekiler li a .toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--ana-renk, #0284c7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

#icindekiler li a .toc-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

#icindekiler li a:hover {
    background: #ffffff;
    color: #0284c7;
    border-color: var(--ana-renk, #0284c7);
    box-shadow: 0 3px 8px rgba(2, 132, 199, 0.1);
    transform: translateX(3px);
}

.sayfa p {
    margin: 15px 0 15px 0;
    padding: 3px 2px 3px 2px;
    font-size: 1.2em;
    text-align: justify;
    line-height: 25px;
    background-color: #fff
}

.sayfa p a {
    font-size: 1em;
    font-weight: 700;
    background-position: bottom;
    color: var(--ana-renk, #0284c7);
}

.sayfa p a:hover {
    color: var(--ana-renk-koyu, #0369a1);
    background-image: linear-gradient(0deg, rgba(2, 132, 199, .2), rgba(2, 132, 199, .2));
    background-size: 1px 2px;
    background-repeat: repeat-x;
    background-position: bottom;
}

.sayfa h2,
.yazi_alani h2 {
    color: var(--yazi-alt-baslik-rengi, #0284c7);
    padding: 6px 0;
    margin: 22px 0 10px 0;
    font-size: 1.45em;
    font-weight: 700;
    word-wrap: break-word;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.sayfa h2 a,
.yazi_alani h2 a {
    font-size: 1em;
    font-weight: 700;
    background-position: bottom;
    color: var(--ana-renk, #0284c7);
}

.sayfa h2 a:hover,
.yazi_alani h2 a:hover {
    text-decoration: underline;
    color: var(--ana-renk-koyu, #0369a1);
}

.sayfa h3,
.yazi_alani h3 {
    color: var(--yazi-alt-baslik-rengi, #0284c7);
    padding: 4px 0;
    margin: 18px 0 8px 0;
    font-size: 1.25em;
    font-weight: 700;
    word-wrap: break-word;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.sayfa h2::before,
.sayfa h3::before,
.yazi_alani h2::before,
.yazi_alani h3::before {
    content: "# ";
    display: inline;
    margin-right: 3px;
    color: #ea580c;
    opacity: 0.28;
    font-weight: 800;
    transition: opacity 0.25s ease, color 0.25s ease;
    user-select: none;
}

.sayfa h2:hover::before,
.sayfa h3:hover::before,
.yazi_alani h2:hover::before,
.yazi_alani h3:hover::before {
    opacity: 1;
    color: #ea580c;
}

/* Başlık Paylaşma ve Link Kopyalama Butonları */
.heading-share-tools {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    user-select: none;
    font-size: 13px;
    font-weight: normal;
    vertical-align: middle;
}

.sayfa h2:hover .heading-share-tools,
.yazi_alani h2:hover .heading-share-tools,
.sayfa h3:hover .heading-share-tools,
.yazi_alani h3:hover .heading-share-tools,
.heading-share-tools:focus-within {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.heading-share-btn {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 12px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 0;
    margin: 0;
    line-height: 1;
}

.heading-share-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.heading-share-btn.btn-copy:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.heading-share-btn.btn-wa:hover {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
}

.heading-share-btn.btn-x:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.heading-share-btn .copy-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.heading-share-btn .copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.heading-share-btn.copied .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 768px) {
    .heading-share-tools {
        opacity: 0.85;
        pointer-events: auto;
    }
}

.sayfa table {
    width: 100%;
    border: 1px solid #d2d2d5;
    border-bottom: 2px solid #d2d2d5;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left
}

.sayfa table thead tr th {
    font-size: 1em;
    font-weight: 700;
    text-align: left;
    padding: 7px;
    border: 1px solid #f8f8f8;
    background-color: var(--ana-renk);
    color: #000
}

.sayfa table tbody tr th {
    font-size: 1em;
    font-weight: 700;
    text-align: left;
    padding: 7px;
    border: 1px solid #d2d2d5;
    background-color: #fbf6f6
}

.sayfa table tbody tr td {
    text-align: left;
    padding: 7px;
    border: 1px solid #d2d2d5
}

.sayfa ul {
    list-style-type: square;
    margin: 10px 0 20px 40px
}

.sayfa ul li {
    font-size: 1.2em;
}

.sayfa ol li {
    font-size: 1.2em;
    list-style-type: decimal;
    margin: 10px 0 20px 40px
}

.sayfa blockquote {
    text-align: center;
    width: calc(100% - 30px);
    border: 1px dashed #3468C0;
    background-color: #e7e7e7;
    color: #212121;
    padding: 0 15px 0 15px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

.yazi_bilgi {
    width: 100%;
    height: 60px;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid #eee;
    vertical-align: middle
}

.yazi_bilgi .yazi_bilgi_sol {
    float: left;
    width: 50%
}

.yazi_bilgi .yazi_bilgi_sag {
    float: right;
    width: 50%
}

.yazi_bilgi .yazi_profil {
    float: left;
    display: block;
    width: 180px;
    height: 60px
}

.yazi_bilgi .yazi_profil .yazar_resim {
    width: 40px;
    height: 40px;
    float: left;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    padding: 2px;
    border: 1px solid #ff9843
}

.yazi_bilgi .yazi_profil .yazar_isim {
    float: right;
    margin: 5px 0 0 0;
    width: 125px;
    height: 20px;
    font-weight: 700;
    font-size: 15px
}

.yazi_bilgi .yazi_profil .yazi_zaman {
    float: right;
    margin: 0;
    width: 125px;
    height: 20px;
    font-size: 12px
}

.yazi_bilgi .yazi_yorum {
    float: right;
    height: 25px;
    width: 40px;
    padding: 5px 0 2px 24px;
    margin: 12px 5px 0 0;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    background: url(../images/yorum.png) no-repeat;
    background-position: left;
    background-size: 25%
}

.yazi_bilgi .yazi_goruntulenme {
    float: right;
    height: 24px;
    width: 40px;
    padding: 6px 0 2px 25px;
    margin: 12px 5px 0 0;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    background: url(../images/yorum_goruntulenme.png) no-repeat;
    background-position: left;
    background-size: 32%
}

.yazi_bilgi .yazi_begen {
    float: right;
    height: 25px;
    width: 40px;
    padding: 5px 0 2px 24px;
    margin: 12px 5px 0 0;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    background: url(../images/begen_kalp.png) no-repeat;
    background-position: left;
    background-size: 27%
}

.sosyal {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
    justify-content: center;
    align-items: center
}

.sosyal a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin: 10px;
    text-align: center
}

.sosyal i {
    font-size: 24px;
    border-radius: 50%;
    padding: 8px;
    background-color: #f0f0f0;
    color: #333;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px
}

.sosyal i:hover {
    animation: ust 10s ease infinite;
    background: linear-gradient(-45deg, #efe523, #dbb51b, #e7ca12, #efd021, #d2b11e, #ffde09)
}

.yorum {
    padding: 0;
    margin: 0;
    width: 100%
}

.yorum>.baslik {
    font-size: 18px;
    font-weight: 700;
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    animation: ust 10s ease infinite;
    background: linear-gradient(-45deg, #efe523, #dbb51b, #e7ca12, #efd021, #d2b11e, #ffde09);
    background-size: 400% 400%
}

.yorum>.yorum-formu {
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 16px
}

.yorum>.yorum-formu ul {
    margin: 0
}

.yorum>.yorum-formu ul li {
    list-style-type: none
}

.yorum>.yorum-formu textarea {
    width: calc(100% - 10px);
    padding: 8px 5px 8px 5px;
    margin: 0;
    box-shadow: 0 0 10px rgba(58, 58, 58, .1);
    resize: none;
    font-size: 15px
}

.yorum>.yorum-formu textarea:focus {
    border: 1px solid #dab902
}

.yorum>.yorum-formu input[type=text] {
    padding: 8px 5px 8px 5px;
    margin: 0 0 5px 0;
    width: calc(100% - 10px);
    height: 35px;
    box-shadow: 0 0 10px rgba(58, 58, 58, .1)
}

.yorum>.yorum-formu input[type=text]:focus {
    border: 1px solid #f3cf02
}

.yorum>.yorum-formu input[type=submit] {
    padding: 20px;
    margin: 10px 0 0 0;
    width: 200px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    vertical-align: middle;
    cursor: pointer;
    border: 0 solid #000;
    background: linear-gradient(to right, #fbdc2b 0, #f7ca18 100%);
    font-size: 18px;
    font-weight: 700
}

.yorum>.yorum-formu input[type=submit]:active {
    color: #fff;
    background: linear-gradient(to right, #363535 0, #6e6d6d 100%)
}

.yorum-listele {
    width: 100%
}

.yorum-listele .yorum_isim {
    font-weight: 700
}

.yorum-listele .yorum_zaman {
    font-weight: 700
}

.yorum-listele .yorum_metni {
    font-size: 16px
}

.galeri {
    display: inline-block;
    width: 990px;
    margin: 5px 5px 0 5px
}

.galeri .galeri_reklam {
    min-width: 160px;
    max-width: 160px;
    min-height: 600px;
    max-height: 600px;
    float: left;
    margin: 0 5px 0 5px
}

.galeri .galeri_orta {
    float: left;
    width: 640px;
    height: auto;
    margin: 0 5px 0 5px
}

.galeri .galeri_orta li {
    list-style: none
}

.galeri .galeri_orta img {
    width: 100%;
    padding: 2px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

.galeri .galeri_orta li.aciklama {
    text-indent: 2px;
    width: 718px;
    padding: 5px 5px 5px 5px;
    font-size: 15px;
    font-weight: 400;
    color: #222
}

.galeri .yonerge {
    height: 50px;
    margin: 5px 0 0 0
}

.galeri .yonerge a {
    color: #222
}

.galeri .yonerge .geri {
    transition: all .5s;
    float: left;
    padding: 10px;
    background: #eee url(/images/site/ok-sol.png) left center no-repeat;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.galeri .yonerge .geri:hover {
    background: #ddd url(/images/site/ok-sol.png) left center no-repeat
}

.galeri .yonerge .geri span {
    display: block;
    width: 70px;
    padding: 0 20px 0 20px;
    text-align: right;
    font-size: 15px;
    font-weight: 700
}

.galeri .yonerge .ileri {
    transition: all .5s;
    float: right;
    padding: 10px;
    background: #eee url(/images/site/ok-sag.png) right center no-repeat;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.galeri .yonerge .ileri:hover {
    background: #ddd url(/images/site/ok-sag.png) right center no-repeat
}

.galeri .yonerge .ileri span {
    display: block;
    width: 70px;
    padding: 0 20px 0 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700
}

/* ==========================================================================
   MANŞET (FEATURED SLIDER / GRID - 16:9 EN-BOY ORANI)
   ========================================================================== */
.manset {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin: 0 0 25px 0;
    width: 100%;
    box-sizing: border-box;
}

.slid3 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1e293b;
    display: flex;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.slid3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.slid3 a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.slid3:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 16 / 9;
}

.slid3:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 16 / 9;
}

.slid3:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    aspect-ratio: 16 / 9;
}

.slid3:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 16 / 9;
}

.slid3:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    aspect-ratio: 16 / 9;
}

.resim3 {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
}

.resim3 img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.slid3:hover .resim3 img {
    transform: scale(1.04);
}

.resim3:after {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 1;
    border-radius: 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 35%, transparent 70%);
    pointer-events: none !important;
    transition: background 0.3s ease;
}

.slid3:hover .resim3:after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 75%);
}

.resim3 .kategori {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ana-renk, #0284c7);
    font-size: 11px;
    line-height: normal;
    font-weight: 700;
    padding: 4px 10px;
    color: #ffffff;
    border-radius: 12px;
    z-index: 3;
    pointer-events: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.resim3 h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    z-index: 3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    pointer-events: none !important;
}

.slid3:nth-child(1) .resim3 h2 {
    font-size: 15px;
    padding: 12px 14px;
    line-height: 1.35;
}

.slid3:not(:first-child) .resim3 h2 {
    font-size: 11px;
    padding: 6px 8px;
}

.resim3 p {
    position: absolute;
    bottom: 2px;
    visibility: hidden;
    padding: 10px;
    z-index: 11;
    word-wrap: break-word;
    text-shadow: 6px 4px 12px #000;
    font-size: 11px;
    color: #fff;
    width: 90%;
    transition: .2s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400
}

.slid3 a:hover .resim3 p {
    visibility: visible;
    z-index: 222;
    transition: .6s
}

/* ==========================================================================
   SAYFA WIDGET / LİSTE KARTLARI (MODERN CARD DESIGN)
   ========================================================================== */
.sayfa_widget {
    width: 100%;
    margin-bottom: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--ana-renk, #0284c7);
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sayfa_widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e1;
    border-left-color: var(--ana-renk, #0284c7);
}

.sayfa_widget_baslik {
    margin: 0 0 10px 0 !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.sayfa_widget_baslik a {
    color: #0f172a !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.sayfa_widget_baslik a:hover {
    color: var(--link-hover, #0284c7) !important;
}

.sayfa_widget_icerik {
    margin: 0 0 16px 0 !important;
    width: 100% !important;
    font-size: 14.5px !important;
    color: #475569 !important;
    line-height: 1.65 !important;
}

.sayfa_widget_alt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sayfa_widget_buton {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25) !important;
    transition: all 0.2s ease !important;
}

.sayfa_widget_buton i {
    font-size: 11px !important;
    transition: transform 0.2s ease !important;
}

.sayfa_widget_buton:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35) !important;
    transform: translateY(-1px) !important;
}

.sayfa_widget_buton:hover i {
    transform: translate(2px, -2px) !important;
}

.test {
    background: #fff;
    border: 1px solid #e1e1e1;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.test:hover {
    border: 1px solid #bbb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   TEST SAYFASI (YILLIK PLAN TARZI MODERN TASARIM)
   ========================================================================== */
.sayfa.test-sayfa-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    float: none !important;
}

.sayfa.test-sayfa-container .yazi_alani {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px !important;
    margin: 0 0 25px 0 !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #e2e8f0 !important;
    box-sizing: border-box !important;
}

.test-header {
    width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #38bdf8 100%);
    color: #ffffff !important;
    padding: 22px 26px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.22);
}

.test-header h1 {
    margin: 0 0 10px 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.2px;
    line-height: 1.35 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.test-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 6px;
}

.test-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.test-meta-badge i {
    font-size: 11px;
    opacity: 0.9;
}

.test-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-left: 4px solid var(--ana-renk, #0284c7);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.test-info-card .test-info-icon {
    font-size: 20px;
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

.test-info-card .test-info-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.55;
}

/* Skor & Sonuç Kartı */
.test-score-dashboard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.test-score-dashboard .dashboard-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.test-score-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .test-score-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.test-score-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}

.test-score-item .score-val {
    font-size: 22px;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}

.test-score-item .score-lbl {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.test-score-item.correct .score-val {
    color: #16a34a;
}

.test-score-item.wrong .score-val {
    color: #dc2626;
}

.test-score-item.empty .score-val {
    color: #ea580c;
}

.test-score-item.total .score-val {
    color: #4f46e5;
}

.test-progress-bar {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.test-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border-radius: 6px;
    transition: width 0.6s ease;
}

.test-retake-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4f46e5;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.test-retake-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

/* ==========================================================================
   TEK TEK / ADIM ADIM (WIZARD) MODU STİLLERİ
   ========================================================================== */
.test-mode-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 12px;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    flex-wrap: wrap;
    gap: 8px;
    min-height: 38px;
    box-sizing: border-box;
}

.test-mode-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.test-mode-tabs {
    display: inline-flex;
    background: transparent;
    padding: 0;
    gap: 5px;
    white-space: nowrap;
}

.test-mode-btn {
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1.3;
}

.test-mode-btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.test-mode-btn.active {
    background: #f0f9ff;
    border-color: #0284c7;
    color: #0284c7;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.15);
}

/* Wizard Header / Question Pills */
.test-wizard-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.test-wizard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13.5px;
}

.test-wizard-step-info {
    font-weight: 700;
    color: #0f172a;
}

.test-wizard-answered-info {
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.test-wizard-progress {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}

.test-wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    border-radius: 4px;
    transition: width 0.35s ease;
}

.test-question-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.test-pill {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.test-pill:hover {
    border-color: #0284c7;
    background: #f0f9ff;
    color: #0284c7;
    transform: scale(1.05);
}

.test-pill.active {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
    transform: scale(1.08);
}

.test-pill.answered {
    background: #f0fdf4;
    border-color: #86efac;
    color: #16a34a;
}

/* Tekli Modda Soru Kartlarının Gizlenip Gösterilmesi */
.test-container-tekli .test.test-step-item {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.test-container-tekli .test.test-step-item.active-step {
    display: block;
}

.test-result-item {
    display: block !important;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wizard Alt Navigasyon Butonları */
.test-wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 20px 0 25px 0;
}

.wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wizard-btn-prev {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.wizard-btn-prev:hover:not(:disabled) {
    background: #e2e8f0;
    color: #0f172a;
}

.wizard-btn-prev:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.wizard-btn-next {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.wizard-btn-next:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
    transform: translateX(2px);
}

/* Soru Kartları */
.test {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.test:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.test .baslik {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

.soru-no-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.soru-no-badge .soru-no {
    font-weight: 800;
    color: #0f172a;
    font-size: 14px;
}

.soru-tur-badge {
    background: #e2e8f0;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.soru-zorluk-badge {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.soru-zorluk-badge.zorluk-kolay {
    color: #16a34a;
}

.soru-zorluk-badge.zorluk-orta {
    color: #d97706;
}

.soru-zorluk-badge.zorluk-zor {
    color: #dc2626;
}

.test .soru {
    padding: 20px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: #1e293b;
    font-weight: 600;
}

/* Soru Görselleri - Genişlemeyi Önleme, Varsayılan Boyut Koruma */
.test .soru img,
.soru img,
.soru-gorsel-icerik,
.soru-resim-kapsayici img,
.soru-resimleri-galeri img,
.soru-resim-item,
.soru-metin img,
.cevap_secenek img,
.secenek img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle;
}

.soru-resim-kapsayici {
    display: block;
    width: 100%;
    text-align: center;
    margin: 14px 0;
}

/* Soru Görselleri Galeri */
.soru-resimleri-galeri {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 22px 0 22px;
    align-items: center;
}

.soru-resim-link {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #ffffff;
}

.soru-resim-link:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.soru-resim-item {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 380px;
    object-fit: contain;
    display: inline-block !important;
}

/* ==========================================================================
   ULTRA-PREMIUM CODE IDE WINDOW (VS CODE / ONE DARK PRO STYLE)
   ========================================================================== */
.code-ide-window {
    background: #181a1f !important;
    border-radius: 12px !important;
    border: 1.5px solid #282c34 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    margin: 16px 0 !important;
    overflow: hidden !important;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Courier New', monospace !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.code-ide-window:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(99, 102, 241, 0.35) !important;
    border-color: #3b4252 !important;
}

/* IDE Titlebar (macOS Style Header) */
.ide-titlebar {
    background: #21252b !important;
    border-bottom: 1px solid #181a1f !important;
    padding: 10px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    user-select: none !important;
    gap: 12px !important;
    box-sizing: border-box !important;
}

.ide-mac-dots {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    flex-shrink: 0 !important;
}

.ide-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    transition: transform 0.2s ease !important;
}

.ide-titlebar:hover .ide-dot {
    transform: scale(1.08) !important;
}

.ide-dot.ide-red {
    background: #ff5f56 !important;
    border: 1px solid #e0443e !important;
    box-shadow: 0 0 6px rgba(255, 95, 86, 0.4) !important;
}

.ide-dot.ide-yellow {
    background: #ffbd2e !important;
    border: 1px solid #dea123 !important;
    box-shadow: 0 0 6px rgba(255, 189, 46, 0.4) !important;
}

.ide-dot.ide-green {
    background: #27c93f !important;
    border: 1px solid #1aab29 !important;
    box-shadow: 0 0 6px rgba(39, 201, 63, 0.4) !important;
}

/* Active File Tab */
.ide-tab-active {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #282c34 !important;
    padding: 5px 14px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #abb2bf !important;
    border: 1px solid #353b45 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.ide-tab-active i {
    font-size: 14px !important;
}

.ide-tab-filename {
    letter-spacing: 0.3px !important;
    color: #e5e7eb !important;
}

/* Actions Right (Badge & Copy) */
.ide-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
}

.ide-lang-badge {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #98c379 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    letter-spacing: 0.5px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ide-copy-btn {
    background: #2c313a !important;
    border: 1px solid #3e4451 !important;
    color: #abb2bf !important;
    padding: 5px 12px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.2s ease !important;
    outline: none !important;
}

.ide-copy-btn:hover {
    background: #3e4451 !important;
    color: #ffffff !important;
    border-color: #5c6370 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.ide-copy-btn.copied {
    background: #238636 !important;
    border-color: #2ea043 !important;
    color: #ffffff !important;
}

/* IDE Editor Body */
.ide-editor-container {
    display: flex !important;
    background: #1e1e24 !important;
    min-height: 50px !important;
    overflow-x: auto !important;
    position: relative !important;
    scrollbar-width: thin !important;
    scrollbar-color: #3e4451 #181a1f !important;
}

/* Row-based Code Container (Immune to HTML minification) */
.ide-code-lines {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 14px 0 !important;
    background: #1e1e24 !important;
}

.ide-code-line {
    display: flex !important;
    align-items: center !important;
    line-height: 24px !important;
    min-height: 24px !important;
    width: 100% !important;
    transition: background 0.15s ease !important;
}

.ide-code-line:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

.ide-line-no {
    width: 46px !important;
    min-width: 46px !important;
    padding-right: 12px !important;
    text-align: right !important;
    color: #4b5263 !important;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace !important;
    font-size: 13px !important;
    line-height: 24px !important;
    user-select: none !important;
    border-right: 1px solid #282c34 !important;
    margin-right: 14px !important;
    flex-shrink: 0 !important;
}

.ide-line-text {
    flex: 1 !important;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace !important;
    font-size: 13.5px !important;
    line-height: 24px !important;
    color: #abb2bf !important;
    white-space: pre !important;
    overflow-x: auto !important;
}

.ide-line-text code {
    background: transparent !important;
    padding: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
}

/* Atom One Dark Pro Syntax Colors */
.code-ide-window .hljs-keyword,
.ide-code-lines .hljs-keyword {
    color: #c678dd !important;
    font-weight: 600 !important;
}

.code-ide-window .hljs-variable,
.ide-code-lines .hljs-variable {
    color: #e06c75 !important;
}

.code-ide-window .hljs-string,
.ide-code-lines .hljs-string {
    color: #98c379 !important;
}

.code-ide-window .hljs-number,
.ide-code-lines .hljs-number {
    color: #d19a66 !important;
}

.code-ide-window .hljs-title.function_,
.code-ide-window .hljs-title,
.ide-code-lines .hljs-title {
    color: #61afef !important;
}

.code-ide-window .hljs-comment,
.ide-code-lines .hljs-comment {
    color: #5c6370 !important;
    font-style: italic !important;
}

.code-ide-window .hljs-operator,
.ide-code-lines .hljs-operator {
    color: #56b6c2 !important;
}

.code-ide-window .hljs-built_in,
.ide-code-lines .hljs-built_in {
    color: #e5c07b !important;
}

/* Dark Custom Scrollbars */
.ide-editor-container::-webkit-scrollbar,
.ide-code-content::-webkit-scrollbar {
    height: 6px !important;
    width: 6px !important;
}

.ide-editor-container::-webkit-scrollbar-track,
.ide-code-content::-webkit-scrollbar-track {
    background: #181a1f !important;
    border-radius: 3px !important;
}

.ide-editor-container::-webkit-scrollbar-thumb,
.ide-code-content::-webkit-scrollbar-thumb {
    background: #3e4451 !important;
    border-radius: 3px !important;
}

.ide-editor-container::-webkit-scrollbar-thumb:hover,
.ide-code-content::-webkit-scrollbar-thumb:hover {
    background: #5c6370 !important;
}

/* Inline Code Badge (for single words in questions) */
.inline-code-badge,
.inline-code,
.test .soru code.inline-code-badge,
.test .soru code.inline-code {
    background: #f1f5f9 !important;
    color: #4f46e5 !important;
    padding: 2px 7px !important;
    border-radius: 5px !important;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace !important;
    font-size: 13.5px !important;
    border: 1px solid #e2e8f0 !important;
    font-weight: 600 !important;
}

/* Input Fields inside IDE Window (for Boşluk Doldurma) */
.code-ide-window input[type="text"],
.code-ide-window input {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1.5px dashed #38bdf8 !important;
    border-radius: 5px !important;
    color: #38bdf8 !important;
    font-family: inherit !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    padding: 2px 10px !important;
    min-width: 140px !important;
    outline: none !important;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2) !important;
    transition: all 0.2s ease !important;
    vertical-align: middle !important;
    display: inline-block !important;
}

.code-ide-window input:focus {
    background: rgba(15, 23, 42, 0.98) !important;
    border-color: #0ea5e9 !important;
    border-style: solid !important;
    box-shadow: 0 0 14px rgba(14, 165, 233, 0.45) !important;
    color: #f0f9ff !important;
}

.code-ide-window strong,
.code-ide-window mark,
.code-ide-window u {
    color: #a3e635 !important;
    background: rgba(163, 230, 53, 0.15) !important;
    padding: 1px 6px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #a3e635 !important;
}

.test .coktan_secmeli {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px 20px 20px;
}

.test .secenek,
.test .cevap_secenek {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    min-height: 48px;
    font-size: 14px;
    color: #334155;
    padding: 0 16px 0 0;
    box-sizing: border-box;
}

.test .secenek:hover,
.test .cevap_secenek:hover {
    border-color: var(--ana-renk, #0284c7);
    background-color: #f0f9ff;
    transform: translateX(4px);
}

.test .secenek_adi {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    width: 44px;
    min-width: 44px;
    margin-right: 14px;
    transition: all 0.2s ease;
    border-right: 1px solid #e2e8f0;
}

.test .secenek:hover .secenek_adi,
.test .cevap_secenek:hover .secenek_adi {
    background-color: var(--ana-renk, #0284c7);
    color: #ffffff;
}

/* Seçili Durumu */
.test .secenek.secili {
    background-color: #f0f9ff !important;
    border-color: var(--ana-renk, #0284c7) !important;
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.25);
}

.test .secenek.secili .secenek_adi {
    background-color: var(--ana-renk, #0284c7);
    color: #ffffff;
    border-color: var(--ana-renk, #0284c7);
}

/* Cevap Durumları (Sonuçlar) */
.test .dogru {
    background-color: #f0fdf4 !important;
    border-color: #22c55e !important;
}

.test .dogru .secenek_adi {
    background-color: #22c55e !important;
    color: #ffffff !important;
    border-color: #22c55e !important;
}

.test .yanlis {
    background-color: #fef2f2 !important;
    border-color: #ef4444 !important;
}

.test .yanlis .secenek_adi {
    background-color: #ef4444 !important;
    color: #ffffff !important;
    border-color: #ef4444 !important;
}

.test input[type=text] {
    padding: 10px 14px;
    margin: 4px 0 8px 0;
    font-size: 14px;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    background-color: #ffffff;
    border-radius: 6px;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
    max-width: 320px;
}

.test input[type=text]:focus {
    border-color: var(--ana-renk, #0284c7);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.test .olumlu_donut {
    padding: 12px 18px;
    color: #166534;
    background-color: #dcfce7;
    border-left: 4px solid #22c55e;
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
}

.test .olumsuz_donut {
    padding: 12px 18px;
    color: #991b1b;
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
}

/* ==========================================================================
   SIRALAMA (SORTABLE) SORULARI VE SONUÇLARI
   ========================================================================== */
.siralama-soru-container {
    padding: 0 20px 20px 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.siralama-ipucu {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    width: 100%;
}

.siralama-ipucu i {
    color: #ea580c;
}

.siralama-sortable-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    box-sizing: border-box !important;
}

.siralama-sortable-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 !important;
}

.siralama-sortable-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.siralama-sortable-item.siralama-chosen {
    border-color: #ea580c;
    background: #fffaf0;
}

.siralama-sortable-item.siralama-ghost {
    opacity: 0.4;
    border-style: dashed;
    border-color: #ea580c;
}

.siralama-handle {
    cursor: grab;
    color: #94a3b8;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.siralama-handle:hover {
    color: #ea580c;
    background: #f1f5f9;
}

.siralama-handle:active {
    cursor: grabbing;
}

.siralama-adim-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.siralama-item-label {
    flex: 1;
    font-size: 14.5px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
    word-break: break-word;
}

.siralama-arrows {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

.siralama-arrow-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    padding: 0;
    box-sizing: border-box;
}

.siralama-arrow-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Sıralama Sonuç Alanı */
.siralama-sonuc-alani {
    padding: 0 20px 20px 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.siralama-karsilastirma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.siralama-kolon {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    box-sizing: border-box;
}

.siralama-kolon.dogru-kolon-box {
    background: #fcfdfd;
    border-color: #cbd5e1;
}

.siralama-kolon-baslik {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.siralama-kolon-baslik.dogru-kolon {
    color: #16a34a;
}

.siralama-kolon-baslik.sizin-kolon-dogru {
    color: #16a34a;
}

.siralama-kolon-baslik.sizin-kolon-yanlis {
    color: #dc2626;
}

.siralama-sonuc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100% !important;
    box-sizing: border-box;
}

.siralama-sonuc-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    padding: 9px 12px !important;
    border-radius: 6px;
    font-size: 13.5px;
    border: 1.5px solid #e2e8f0;
    box-sizing: border-box;
    width: 100%;
}

.siralama-sonuc-item.adim-dogru {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.siralama-sonuc-item.adim-yanlis {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.siralama-sonuc-item.adim-dogru-ornek {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #1e293b;
}

.siralama-sonuc-item .siralama-adim-no {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================================
   ULTRA-MODERN EŞLEŞTİRME (MATCHING) SORU BİLEŞENİ
   ========================================================================== */
.eslestirme-modern-container {
    padding: 0 20px 24px 20px;
    box-sizing: border-box;
    width: 100%;
}

/* İpucu Kartı */
.eslestirme-ipucu-kart {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    border: 1.5px solid #e0e7ff;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.05);
}

.eslestirme-ipucu-kart .ipucu-ikon-box {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.25);
}

.eslestirme-ipucu-kart .ipucu-baslik {
    font-size: 14px;
    font-weight: 700;
    color: #312e81;
    margin-bottom: 2px;
}

.eslestirme-ipucu-kart .ipucu-aciklama {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
}

/* Kartlar Listesi */
.eslestirme-kartlar-listesi {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Tekil Eşleştirme Kartı */
.eslesme-kart-satir {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.eslesme-kart-satir:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.eslesme-kart-satir.kart-dolu {
    border-color: #818cf8;
    background: linear-gradient(to right, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.08);
}

/* Sol Kavram Bloğu */
.eslesme-sol-blok {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
}

.eslesme-no-rozet {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.25);
    transition: all 0.25s ease;
}

.eslesme-kart-satir.kart-dolu .eslesme-no-rozet {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.eslesme-sol-etiket {
    flex: 1;
    min-width: 0;
}

.eslesme-kavram-metni {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    word-break: break-word;
}

/* Orta Bağlantı Köprüsü */
.eslesme-baglanti-koprusu {
    display: flex;
    align-items: center;
    padding: 0 12px;
    flex-shrink: 0;
}

.baglanti-cizgi {
    width: 14px;
    height: 2px;
    background: #e2e8f0;
    transition: all 0.25s ease;
}

.baglanti-ikon-yuva {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
}

.eslesme-kart-satir.kart-dolu .baglanti-cizgi {
    background: #818cf8;
}

.eslesme-kart-satir.kart-dolu .baglanti-ikon-yuva {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.35);
    transform: rotate(45deg);
}

/* Sağ Seçim Bloğu */
.eslesme-sag-blok {
    flex: 1.3;
    min-width: 0;
    position: relative;
}

.eslesme-custom-select-wrap {
    position: relative;
    width: 100%;
}

.select-arrow-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.eslestirme-select-modern {
    width: 100%;
    padding: 11px 38px 11px 16px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    outline: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.eslestirme-select-modern:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(99, 102, 241, 0.15);
}

.eslesme-kart-satir.kart-dolu .eslestirme-select-modern {
    border-color: #10b981;
    background: #ffffff;
    font-weight: 600;
    color: #065f46;
}

/* Sonuç Ekranı Stilleri */
.eslestirme-sonuc-modern-container {
    padding: 0 20px 22px 20px;
    box-sizing: border-box;
    width: 100%;
}

.eslestirme-sonuc-kartlar-listesi {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.eslesme-sonuc-kart-satir {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    width: 100%;
    border: 1.5px solid #e2e8f0;
}

.eslesme-sonuc-kart-satir.sonuc-kart-dogru {
    border-left: 5px solid #10b981;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.eslesme-sonuc-kart-satir.sonuc-kart-yanlis {
    border-left: 5px solid #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
}

.eslesme-sonuc-kart-satir.sonuc-kart-bos {
    border-left: 5px solid #94a3b8;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.sonuc-sol-kavram {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sonuc-no-rozet {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #334155;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sonuc-kart-dogru .sonuc-no-rozet {
    background: #10b981;
}

.sonuc-kart-yanlis .sonuc-no-rozet {
    background: #ef4444;
}

.sonuc-kavram-metin {
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
}

.sonuc-ok-alani {
    padding: 0 16px;
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.sonuc-kart-dogru .sonuc-ok-alani {
    color: #10b981;
}

.sonuc-kart-yanlis .sonuc-ok-alani {
    color: #ef4444;
}

.sonuc-sag-degerlendirme {
    flex: 1.5;
}

.sonuc-kutu {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
}

.sonuc-kutu.dogru-kutu {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #065f46;
    font-weight: 600;
}

.sonuc-kutu.dogru-kutu i {
    font-size: 16px;
    color: #10b981;
}

.sonuc-badge.dogru-badge {
    margin-left: auto;
    background: #d1fae5;
    color: #065f46;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.sonuc-kutu.yanlis-kutu .yanlis-secim {
    color: #991b1b;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sonuc-kutu.yanlis-kutu .dogru-ipucu,
.sonuc-kutu.bos-kutu .dogru-ipucu {
    color: #047857;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sonuc-kutu.bos-kutu .bos-uyari {
    color: #64748b;
    font-style: italic;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobil Uyumluluk */
@media (max-width: 680px) {
    .eslesme-kart-satir {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .eslesme-baglanti-koprusu {
        display: none;
    }

    .eslesme-sonuc-kart-satir {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .sonuc-ok-alani {
        display: none;
    }
}

.siralama-sonuc-item .siralama-adim-text {
    flex: 1;
    word-break: break-word;
}

#sonuclari_al {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ea580c 0%, #d97706 60%, #f59e0b 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 28px;
    margin: 25px 0 30px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
    transition: all 0.25s ease;
    text-align: center;
}

#sonuclari_al:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
    background: linear-gradient(135deg, #c2410c 0%, #b45309 60%, #d97706 100%);
}

/* ==========================================================================
   YORUM ALANI - MODERN TASARIM
   ========================================================================== */
.yorum-alani {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.yorum-baslik-alani {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.yorum-ana-baslik {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yorum-ana-baslik i {
    color: #ea580c;
}

.yorum-adet-badge {
    background: #fef3c7;
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

/* Yorum Listesi */
.yorum-listesi {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 26px;
}

.yorum-kart {
    display: flex;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
}

.yorum-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yorum-govde {
    flex: 1;
}

.yorum-yazar-satir {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 4px;
}

.yorum-yazar-adi {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

.yorum-tarih {
    font-size: 12px;
    color: #64748b;
}

.yorum-icerik-metni {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

/* Yorum Formu */
.yorum-form-kutusu {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
}

.yorum-form-baslik {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.yorum-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .yorum-form-grid {
        grid-template-columns: 1fr;
    }
}

.yorum-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yorum-input-wrap.full-width {
    grid-column: 1 / -1;
}

input.yorum-input,
input[type=text].yorum-input,
input[type=email].yorum-input,
.yorum-input,
.yorum-textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 14px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
}

input.yorum-input,
input[type=text].yorum-input,
input[type=email].yorum-input {
    height: 44px !important;
    min-height: 44px !important;
}

.yorum-textarea {
    min-height: 90px !important;
    resize: vertical !important;
}

input.yorum-input:focus,
input[type=text].yorum-input:focus,
input[type=email].yorum-input:focus,
.yorum-input:focus,
.yorum-textarea:focus {
    outline: none !important;
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12) !important;
}

.yorum-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.yorum-submit-btn:hover {
    background: linear-gradient(135deg, #c2410c 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.yorum-bildirim {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13.5px;
    font-weight: 600;
}

.yorum-bildirim.hata {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.yorum-bildirim.onay {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

/* ==========================================================================
   SCORE BOARD (SKOR TABLOSU & KAYIT FORMU)
   ========================================================================== */
.skor-alani {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.skor-baslik {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skor-kayit-kutu {
    background: linear-gradient(135deg, #fffaf5 0%, #fff7ed 100%);
    border: 1.5px dashed #f97316;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.skor-kayit-baslik {
    font-size: 15px;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.skor-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr auto;
    gap: 14px;
    align-items: flex-end;
}

@media (max-width: 900px) {
    .skor-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.skor-input-grup {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skor-input-grup label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 5px;
}

.skor-input-grup label i {
    color: #ea580c;
}

.skor-input {
    padding: 12px 14px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14.5px;
    color: #0f172a;
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    height: 46px;
}

.skor-input:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.skor-kaydet-btn {
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    box-sizing: border-box;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.skor-kaydet-btn:hover {
    background: linear-gradient(135deg, #c2410c 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.skor-bos-bilgi {
    text-align: center;
    padding: 28px 16px;
    color: #64748b;
    font-size: 14.5px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}

.skor-bos-bilgi i {
    font-size: 32px;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: block;
}

/* ==========================================================================
   SCORE BOARD (LİDERLİK TABLOSU - ULTRA MODERN)
   ========================================================================== */
.skor-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 10px;
}

.skor-trophy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #fef08a, #facc15);
    color: #854d0e;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.35);
}

.skor-top-badge {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.skor-top-badge i {
    color: #eab308;
}

.skor-tablosu-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.sayfa table.skor-tablo,
.skor-tablo {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: none !important;
    font-size: 14px !important;
    text-align: left !important;
    background: #ffffff !important;
    margin: 0 !important;
}

.sayfa table.skor-tablo thead tr th,
.skor-tablo thead tr th {
    background: #0f172a !important;
    color: #f8fafc !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    padding: 14px 18px !important;
    border: none !important;
    border-bottom: 2px solid #0f172a !important;
    white-space: nowrap !important;
}

.sayfa table.skor-tablo tbody tr td,
.skor-tablo tbody tr td {
    padding: 14px 18px !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: #334155 !important;
    vertical-align: middle !important;
    font-size: 14px !important;
    background: transparent !important;
    transition: background 0.15s ease !important;
}

.sayfa table.skor-tablo tbody tr:last-child td,
.skor-tablo tbody tr:last-child td {
    border-bottom: none !important;
}

.sayfa table.skor-tablo tbody tr:hover td,
.skor-tablo tbody tr:hover td {
    background: #fffdf5 !important;
}

/* Top 3 Sıra Vurgusu */
.skor-row-top1 td {
    background: rgba(254, 240, 138, 0.08) !important;
}

.skor-row-top2 td {
    background: rgba(241, 245, 249, 0.5) !important;
}

.skor-row-top3 td {
    background: rgba(255, 237, 213, 0.1) !important;
}

/* Sıra Rozetleri */
.skor-sira-badge {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    background: #f1f5f9;
    color: #475569;
}

.skor-sira-badge.sira-1 {
    background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
    color: #854d0e;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.45);
}

.skor-sira-badge.sira-2 {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #334155;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(203, 213, 225, 0.45);
}

.skor-sira-badge.sira-3 {
    background: linear-gradient(135deg, #ffedd5 0%, #fdba74 100%);
    color: #9a3412;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(253, 186, 116, 0.45);
}

/* Kullanıcı Bilgisi */
.skor-user-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skor-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skor-user-avatar.sira-1 {
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    color: #ffffff;
}

.skor-user-avatar.sira-2 {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: #ffffff;
}

.skor-user-avatar.sira-3 {
    background: linear-gradient(135deg, #c2410c, #ea580c);
    color: #ffffff;
}

.skor-user-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

/* Şehir Pill */
.skor-sehir-pill {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.skor-sehir-pill i {
    color: #ea580c;
    font-size: 11px;
}

/* D / Y / B Hapları */
.skor-dyb-wrap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.stat-pill {
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.stat-pill.stat-d {
    background: #ecfdf5;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.stat-pill.stat-y {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.stat-pill.stat-b {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* Puan Rozeti */
.skor-puan-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    white-space: nowrap !important;
}

.skor-puan-badge i {
    color: #fef08a;
    font-size: 11px;
}

.skor-tarih-text {
    font-size: 12.5px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* ==========================================================================
   TEST SAYFASI MOBİL KOMPAKT TASARIM
   ========================================================================== */
@media (max-width: 768px) {

    /* Test Container Mobile */
    .sayfa.test-sayfa-container {
        padding: 0 !important;
        margin-bottom: 0 !important;
        max-width: 100% !important;
    }

    .sayfa.test-sayfa-container .yazi_alani {
        padding: 14px 12px !important;
        border-radius: 10px !important;
        margin-bottom: 16px !important;
    }

    /* Test Header */
    .test-header {
        padding: 14px 16px !important;
        margin-bottom: 14px !important;
        border-radius: 8px !important;
    }

    .test-header h1 {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .test-meta-badges {
        gap: 6px !important;
    }

    .test-meta-badge {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }

    /* Test Info Card */
    .test-info-card {
        padding: 10px 14px !important;
        margin-bottom: 14px !important;
        gap: 10px !important;
        border-radius: 8px !important;
    }

    .test-info-card .test-info-icon {
        font-size: 16px !important;
    }

    .test-info-card .test-info-text {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    /* Test Mode Bar */
    .test-mode-bar {
        padding: 4px 8px !important;
        margin-bottom: 12px !important;
        min-height: 34px !important;
    }

    .test-mode-title {
        font-size: 11.5px !important;
    }

    .test-mode-btn {
        padding: 4px 8px !important;
        font-size: 11px !important;
    }

    /* Wizard Panel */
    .test-wizard-panel {
        padding: 10px 12px !important;
        margin-bottom: 14px !important;
        border-radius: 8px !important;
    }

    .test-wizard-top {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .test-question-pills {
        gap: 4px !important;
    }

    .test-pill {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }

    /* Test Soru Kartları */
    .test {
        margin-bottom: 14px !important;
        border-radius: 8px !important;
    }

    .test .baslik {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    .test .soru {
        padding: 12px 14px !important;
        font-size: 13.5px !important;
        line-height: 1.5 !important;
    }

    .test .coktan_secmeli {
        padding: 0 12px 14px 12px !important;
        gap: 6px !important;
    }

    .test .secenek,
    .test .cevap_secenek {
        min-height: 40px !important;
        padding: 4px 8px !important;
        font-size: 13px !important;
    }

    .test .secenek_adi {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }

    /* Sıralama Soruları */
    .siralama-soru-container {
        padding: 0 12px 14px 12px !important;
    }

    .siralama-ipucu {
        font-size: 11.5px !important;
        padding: 6px 10px !important;
        margin-bottom: 10px !important;
    }

    .siralama-sortable-list {
        gap: 6px !important;
    }

    .siralama-sortable-item {
        padding: 8px 10px !important;
        gap: 8px !important;
    }

    .siralama-adim-badge {
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
    }

    .siralama-item-label {
        font-size: 13px !important;
    }

    .siralama-arrow-btn {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 11px !important;
    }

    /* Sıralama Sonuç Grid */
    .siralama-sonuc-alani {
        padding: 0 12px 14px 12px !important;
    }

    .siralama-karsilastirma-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .siralama-kolon {
        padding: 10px 12px !important;
    }

    .siralama-sonuc-item {
        padding: 7px 10px !important;
        font-size: 12.5px !important;
    }

    /* Sonuç Dashboard */
    .test-score-dashboard {
        padding: 16px 14px !important;
        margin-bottom: 16px !important;
        border-radius: 8px !important;
    }

    .test-score-dashboard .dashboard-title {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }

    .test-score-grid {
        gap: 8px !important;
        margin-bottom: 14px !important;
    }

    .test-score-item {
        padding: 8px 6px !important;
    }

    .test-score-item .score-val {
        font-size: 18px !important;
    }

    .test-score-item .score-lbl {
        font-size: 10.5px !important;
    }

    /* Liderlik Tablosu & Formlar */
    .skor-alani {
        padding: 14px 12px !important;
        margin: 16px 0 !important;
        border-radius: 8px !important;
    }

    .skor-tablo th,
    .skor-tablo td {
        padding: 8px 6px !important;
        font-size: 12px !important;
    }

    .skor-kaydet-form-kapsayici {
        padding: 14px 12px !important;
        margin: 16px 0 !important;
        border-radius: 8px !important;
    }

    .skor-kaydet-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    #sonuclari_al {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
}

.hesaplama {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 5px 0;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    font-size: 14px
}

.hesaplama:hover {
    border: 1px solid #a1a1a1
}

.hesaplama .baslik {
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 10px 15px 10px;
    font-size: 18px
}

.hesaplama ul {
    width: calc(100% - 40px);
    display: inline-block;
    margin: 20px
}

.hesaplama ul li {
    width: 100%;
    list-style: none;
    font-weight: 700;
    font-size: 17px
}

.hesaplama .hesaplama_form {
    padding: 15px 10px 15px 10px;
    font-size: 18px
}

.hesaplama .hesaplama_form ul {
    width: 100%;
    display: inline-flex;
    margin: 2px 0 2px 0
}

.hesaplama .hesaplama_form .gerekli {
    font-weight: 700;
    color: red
}

.hesaplama .hesaplama_form ul li.hesaplama_form_sol {
    list-style: none;
    float: left;
    width: calc(40% - 10px);
    margin: 0 10px 0 0;
    padding: 2px 0 2px 0;
    font-weight: 700;
    font-size: 17px;
    word-wrap: break-word
}

.hesaplama .hesaplama_form ul li.hesaplama_form_sag {
    list-style: none;
    float: left;
    width: calc(40%)
}

.hesaplama>.hesaplama_form input {
    padding: 8px 5px 8px 5px;
    margin: 0 0 5px 0;
    width: 100px;
    height: 30px;
    box-shadow: 0 0 10px rgba(58, 58, 58, .1);
    font-size: 18px;
    color: #820202;
    border: 1px solid #bebebe;
    border-radius: 2px
}

.hesaplama>.hesaplama_form input:focus {
    border: 1px solid #820202
}

.hesaplama>.hesaplama_form select {
    padding: 10px 5px 10px 5px;
    margin: 0 0 5px 0;
    width: 100%;
    box-shadow: 0 0 10px rgba(58, 58, 58, .1);
    font-size: 18px;
    color: #820202;
    border: 1px solid #bebebe;
    border-radius: 2px
}

.hesaplama>.hesaplama_form select:focus {
    border: 1px solid #820202
}

.hesaplama>.hesaplama_form input[type=submit] {
    padding: 20px 30px 40px 30px;
    margin: 10px 0 0 0;
    width: 200px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    vertical-align: middle;
    cursor: pointer;
    border: 0 solid #000;
    background: linear-gradient(to right, #fbdc2b 0, #f7ca18 100%);
    font-size: 18px;
    font-weight: 700
}

.hesaplama>.hesaplama_form input[type=submit]:active {
    color: #fff;
    background: linear-gradient(to right, #363535 0, #6e6d6d 100%)
}

.yillik-plan {
    font-size: 18px;
    padding: 0;
    width: 100%
}

.yillik-plan ul {
    margin: 5px;
    padding: 5px;
    width: calc((100% / 4) - 22px);
    display: inline-flex
}

.yillik-plan .gerekli {
    font-weight: 700;
    color: red
}

.yillik-plan label {
    font-size: .7em;
    width: 100%
}

.yillik-plan input {
    padding: 8px 5px 8px 5px;
    margin: 0 0 5px 0;
    width: calc(100% - 20px);
    height: 30px;
    box-shadow: 0 0 10px rgba(58, 58, 58, .1);
    font-size: 18px;
    color: #820202;
    border: 1px solid #bebebe;
    border-radius: 2px
}

.yillik-plan input:focus {
    border: 1px solid #820202
}

.yillik-plan select {
    width: 100% !important;
    padding: 10px 5px 10px 5px;
    margin: 0 0 5px 0;
    box-shadow: 0 0 10px rgba(58, 58, 58, .1);
    font-size: 18px;
    color: #820202;
    border: 1px solid #bebebe;
    border-radius: 2px
}

.yillik-plan select:focus {
    border: 1px solid #820202
}

.yillik-plan input[type=submit] {
    padding: 20px 30px 40px 30px;
    margin: 10px 0 0 0;
    width: 200px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    vertical-align: middle;
    cursor: pointer;
    border: 0 solid #000;
    background: linear-gradient(to right, #fbdc2b 0, #f7ca18 100%);
    font-size: 18px;
    font-weight: 700
}

.yillik-plan input[type=submit]:active {
    color: #fff;
    background: linear-gradient(to right, #363535 0, #6e6d6d 100%)
}

@media only screen and (min-width:601px) and (max-width:1024px) {

    #ust #ust-menu {
        margin: auto;
        margin-top: 4px;
        width: 100%;
        height: 100%;
        height: auto;
        float: left
    }

    #ust #ust-menu>ul {
        box-shadow: 0 3px 8px rgba(0, 0, 0, .6);
        width: 100%;
        height: 100%;
        display: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li {
        width: 100%;
        float: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li>a {
        text-align: left;
        font-size: 20px;
        font-weight: 700
    }

    #ust-menu>ul>li>label {
        text-align: left
    }

    #ust-menu ul>li.acilan .acilan-menu::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
        margin-top: -11px;
        margin-left: 20px
    }

    #ust-menu>ul>li.acilan:hover .acilan-menu {
        width: 100%;
        position: static;
        height: 100%;
        visibility: visible;
        background-color: #fff;
        padding: 5px 0 5px 0;
        margin-bottom: 10px;
        transition: all 1s;
        box-shadow: 0 0 15px rgba(0, 0, 0, .18)
    }

    #ust-menu>ul>li.acilan .acilan-menu {
        width: 180px;
        height: auto;
        background-color: #fff;
        padding: 5px 0 5px 0
    }

    #ust-menu>ul>li.acilan .acilan-menu::before {
        display: none
    }

    #ust-menu>ul>li.acilan .acilan-menu li {
        color: #fff;
        text-align: left;
        padding: 0 0 0 10px;
        margin: 1px 0 1px 0;
        height: 100%;
        width: calc(100% - 10px)
    }

    #ust-menu>ul>li.acilan .acilan-menu li a {
        color: #000;
        text-align: left;
        font-size: 16px
    }

    #ust-menu>ul>li.acilan .acilan-menu li a:hover {
        color: #000
    }



    .breadcrumbs {
        font-size: 11px;
        color: #732052
    }

    #orta_bolge {
        min-width: calc(100% - 80px);
        max-width: calc(100% - 80px);
        height: auto;
        margin: 20px;
        padding: 20px
    }

    #orta_bolge #orta_sol {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
    }

    #orta_bolge #orta_sag {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
    }

    #menu {
        height: auto
    }

    #menu #menu_kapali {
        display: block;
        min-width: 768px;
        max-width: 768px
    }

    #menu #menu_buton {
        display: block
    }

    #menu #menu_ic {
        display: none;
        overflow: none;
        min-width: 768px;
        max-width: 768px;
        padding-top: 10px;
        padding-bottom: 10px
    }

    #menu #menu_ic ul {
        overflow: none
    }

    #menu #menu_ic ul li {
        min-width: 768px;
        max-width: 768px;
        float: none;
        border-bottom: 1px solid #732052
    }

    #menu #menu_ic ul li a {
        margin-bottom: 2px;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px
    }

    .galeri {
        margin: 0;
        min-width: 768px;
        max-width: 768px
    }

    .galeri .galeri_orta {
        margin: 0;
        min-width: 768px;
        max-width: 768px
    }

    .galeri .galeri_orta li.resim {
        list-style: none
    }

    .galeri .galeri_orta img {
        max-width: 768px;
        padding: 0
    }

    .galeri .galeri_orta li.aciklama {
        text-indent: 2px
    }

    .galeri .yonerge {
        height: 50px;
        margin: 5px 5px 5px 0
    }

    .galeri .galeri_reklam {
        display: inline-block;
        float: none;
        margin: auto;
        width: 768px;
        min-width: 768px;
        max-width: 768px;
        height: 90px;
        min-height: 90px;
        max-height: 90px
    }

    footer #alt_bolge {
        margin: 0 20px 20px 20px;
        padding: 20px;
        width: calc(100% - 80px)
    }

    footer #footer_sol {
        display: block;
        width: 100%;
        margin-bottom: 20px
    }

    footer #footer_sag {
        display: block;
        width: 100%
    }

    footer #footer_sag .alt-menu {
        width: 100%;
        margin-bottom: 10px
    }

    footer #footer_sag .alt-menu .baslik {
        font-size: 16px
    }

    footer #footer_sag .alt-menu li a {
        font-size: 13px
    }

    .yillik-plan {
        font-size: 18px;
        padding: 0;
        width: 100%
    }

    .yillik-plan ul {
        margin: 5px;
        padding: 5px;
        width: calc((100% / 2) - 22px);
        display: inline-flex
    }

}

@media only screen and (max-width:600px) {

    #ust #ust-menu {
        margin: auto;
        margin-top: 4px;
        width: 100%;
        height: 100%;
        height: auto;
        float: left
    }

    #ust #ust-menu>ul {
        box-shadow: 0 3px 8px rgba(0, 0, 0, .6);
        width: 100%;
        height: 100%;
        display: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li {
        width: 100%;
        float: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li>a {
        text-align: left;
        font-size: 20px;
        font-weight: 700
    }

    #ust-menu>ul>li>label {
        text-align: left
    }

    #ust-menu ul>li.acilan .acilan-menu::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
        margin-top: -11px;
        margin-left: 10px
    }

    #ust-menu>ul>li.acilan:hover .acilan-menu {
        width: 100%;
        position: static;
        height: 100%;
        visibility: visible;
        background-color: #fff;
        padding: 5px 0 5px 0;
        margin-bottom: 10px;
        transition: all 1s;
        box-shadow: 0 0 15px rgba(0, 0, 0, .18)
    }

    #ust-menu>ul>li.acilan .acilan-menu {
        width: 180px;
        height: auto;
        background-color: #fff;
        padding: 5px 0 5px 0
    }

    #ust-menu>ul>li.acilan .acilan-menu::before {
        display: none
    }

    #ust-menu>ul>li.acilan .acilan-menu li {
        color: #fff;
        text-align: left;
        padding: 0 0 0 10px;
        margin: 1px 0 1px 0;
        height: 100%;
        width: calc(100% - 10px)
    }

    #ust-menu>ul>li.acilan .acilan-menu li a {
        color: #000;
        text-align: left;
        font-size: 16px
    }

    #ust-menu>ul>li.acilan .acilan-menu li a:hover {
        color: #000
    }

    .breadcrumbs-container {
        width: calc(100% - 40px);
        margin: 10px 20px 0 20px;
    }

    .kutu {
        width: 100%;
        margin: 0 0 15px 0;
        display: inline-block;
        color: var(--foregroundColor);
        text-align: left;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        padding: 0
    }



    .yayin-akisi-baslik {
        color: var(--ana-renk, #0284c7);
        font-size: 28px;
        font-weight: 700;
        margin: 15px 0 0 0
    }

    .yayin-akisi {
        width: 100%;
        position: relative;
        float: left;
        margin: 0
    }

    .yayin-akisi:before {
        display: none
    }

    .yayin-akisi ul {
        width: 100%;
        float: left
    }

    .yayin-akisi ul li {
        float: left;
        width: 100%;
        padding-left: 0;
        margin: 10px 0 10px 0;
        padding-bottom: 5px;
        position: relative;
        border-bottom: 1px dotted #e2e2e2
    }

    .yayin-akisi ul li .yayin-akisi-resim {
        float: left;
        width: 100%;
        height: auto;
        border-radius: 3px;
        margin-right: 20px
    }

    .yayin-akisi ul li .yayin-akisi-sol {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-sol .yayin-akisi-icon {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-sol .yayin-akisi-zaman {
        position: relative
    }

    .yayin-akisi ul li .yayin-akisi-kategori {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-kategori a {
        text-transform: uppercase;
        font-size: 11px
    }

    .yayin-akisi ul li .yayin-akisi-adi {
        float: right;
        width: 100%;
        max-height: 84px;
        overflow: hidden;
        display: block
    }

    .yayin-akisi ul li .yayin-akisi-adi a {
        font-size: 20px;
        line-height: 35px;
        font-weight: 700
    }

    .yayin-akisi ul li .yayin-akisi-adi a:hover {
        font-size: 20px;
        line-height: 35px;
        font-weight: 700;
        color: var(--ana-renk, #0284c7);
    }

    .yayin-akisi ul li .yayin-akisi-detay {
        float: left;
        width: 100%;
        margin-top: 5px;
        overflow: hidden
    }

    .yayin-akisi ul li .yayin-akisi-detay a {
        font-size: 16px;
        font-weight: 400
    }

    .yayin-akisi ul li .yayin-akisi-detay .yayin-akisi-yazar {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-detay .yayin-akisi-yazar a {
        font-weight: 400;
        font-size: 11px;
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-detay .responsive_kategori {
        display: block;
        float: left;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 5px
    }

    .yayin-akisi ul li .yayin-akisi-detay .responsive_kategori a {
        font-size: 12px
    }

    .yayin-akisi ul li .yayin-akisi-detay .responsive_zaman {
        margin-bottom: 5px;
        display: block;
        float: right;
        text-transform: uppercase
    }

    .populer_haberler {
        width: 100%
    }

    .populer_haberler ul li {
        padding: 15px;
        width: 100%;
        height: 80px;
        list-style: none;
        display: block;
        position: relative
    }

    .populer_haberler ul li .populer_baslik {
        float: right;
        width: calc(100% - 90px);
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 16px;
        font-weight: 700;
        margin-top: 5px
    }

    .populer_haberler ul li .populer_tarih {
        float: right;
        width: calc(100% - 105px)
    }

    footer #alt_bolge {
        margin: 20px;
        padding: 20px;
        width: calc(100% - 80px)
    }

    footer #footer_sol {
        display: block;
        width: 100%;
        margin-bottom: 20px
    }

    footer #footer_sag {
        display: block;
        width: 100%
    }

    footer #footer_sag .alt-menu {
        width: 100%;
        margin-bottom: 10px
    }

    footer #footer_sag .alt-menu .baslik {
        font-size: 16px
    }

    footer #footer_sag .alt-menu li a {
        font-size: 13px
    }

    .yillik-plan {
        font-size: 18px;
        padding: 0;
        width: 100%
    }

    .yillik-plan ul {
        margin: 5px;
        padding: 5px;
        width: calc((100%) - 22px);
        display: inline-flex
    }

}

@media only screen and (min-width:1024px) {

    #menu #menu_ic {
        display: block
    }

}

@media only screen and (min-width:601px) and (max-width:1024px) {

    #ust #ust-menu {
        margin: auto;
        margin-top: 4px;
        width: 100%;
        height: 100%;
        height: auto;
        float: left
    }

    #ust #ust-menu>ul {
        box-shadow: 0 3px 8px rgba(0, 0, 0, .6);
        width: 100%;
        height: 100%;
        display: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li {
        width: 100%;
        float: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li>a {
        text-align: left;
        font-size: 20px;
        font-weight: 700
    }

    #ust-menu>ul>li>label {
        text-align: left
    }

    #ust-menu ul>li.acilan .acilan-menu::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
        margin-top: -11px;
        margin-left: 20px
    }

    #ust-menu>ul>li.acilan:hover .acilan-menu {
        width: 100%;
        position: static;
        height: 100%;
        visibility: visible;
        background-color: #fff;
        padding: 5px 0 5px 0;
        margin-bottom: 10px;
        transition: all 1s;
        box-shadow: 0 0 15px rgba(0, 0, 0, .18)
    }

    #ust-menu>ul>li.acilan .acilan-menu {
        width: 180px;
        height: auto;
        background-color: #fff;
        padding: 5px 0 5px 0
    }

    #ust-menu>ul>li.acilan .acilan-menu::before {
        display: none
    }

    #ust-menu>ul>li.acilan .acilan-menu li {
        color: #fff;
        text-align: left;
        padding: 0 0 0 10px;
        margin: 1px 0 1px 0;
        height: 100%;
        width: calc(100% - 10px)
    }

    #ust-menu>ul>li.acilan .acilan-menu li a {
        color: #000;
        text-align: left;
        font-size: 16px
    }

    #ust-menu>ul>li.acilan .acilan-menu li a:hover {
        color: #000
    }



    .breadcrumbs {
        font-size: 11px;
        color: #732052
    }

    #orta_bolge {
        min-width: calc(100% - 80px);
        max-width: calc(100% - 80px);
        margin: 20px;
        padding: 20px
    }

    #orta_bolge #orta_sol {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
    }

    #orta_bolge #orta_sag {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
    }

    #menu {
        height: auto
    }

    #menu #menu_kapali {
        display: block;
        min-width: 768px;
        max-width: 768px
    }

    #menu #menu_buton {
        display: block
    }

    #menu #menu_ic {
        display: none;
        overflow: none;
        min-width: 768px;
        max-width: 768px;
        padding-top: 10px;
        padding-bottom: 10px
    }

    #menu #menu_ic ul {
        overflow: none
    }

    #menu #menu_ic ul li {
        min-width: 768px;
        max-width: 768px;
        float: none;
        border-bottom: 1px solid #732052
    }

    #menu #menu_ic ul li a {
        margin-bottom: 2px;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px
    }

    .galeri {
        margin: 0;
        min-width: 768px;
        max-width: 768px
    }

    .galeri .galeri_orta {
        margin: 0;
        min-width: 768px;
        max-width: 768px
    }

    .galeri .galeri_orta li.resim {
        list-style: none
    }

    .galeri .galeri_orta img {
        max-width: 768px;
        padding: 0
    }

    .galeri .galeri_orta li.aciklama {
        text-indent: 2px
    }

    .galeri .yonerge {
        height: 50px;
        margin: 5px 5px 5px 0
    }

    .galeri .galeri_reklam {
        display: inline-block;
        float: none;
        margin: auto;
        width: 768px;
        min-width: 768px;
        max-width: 768px;
        height: 90px;
        min-height: 90px;
        max-height: 90px
    }

    footer #alt_bolge {
        margin: 20px;
        padding: 20px;
        width: calc(100% - 80px)
    }

    footer #footer_sol {
        display: block;
        width: 100%;
        margin-bottom: 20px
    }

    footer #footer_sag {
        display: block;
        width: 100%
    }

    footer #footer_sag .alt-menu {
        width: 100%;
        margin-bottom: 10px
    }

    footer #footer_sag .alt-menu .baslik {
        font-size: 16px
    }

    footer #footer_sag .alt-menu li a {
        font-size: 13px
    }

}

@media only screen and (max-width:600px) {

    #ust #ust-menu {
        margin: auto;
        margin-top: 4px;
        width: 100%;
        height: 100%;
        height: auto;
        float: left
    }

    #ust #ust-menu>ul {
        box-shadow: 0 3px 8px rgba(0, 0, 0, .6);
        width: 100%;
        height: 100%;
        display: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li {
        width: 100%;
        float: none;
        background: #fff;
        z-index: 9999
    }

    #ust-menu>ul>li>a {
        text-align: left;
        font-size: 20px;
        font-weight: 700
    }

    #ust-menu>ul>li>label {
        text-align: left
    }

    #ust-menu ul>li.acilan .acilan-menu::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
        margin-top: -11px;
        margin-left: 20px
    }

    #ust-menu>ul>li.acilan:hover .acilan-menu {
        width: 100%;
        position: static;
        height: 100%;
        visibility: visible;
        background-color: #fff;
        padding: 5px 0 5px 0;
        margin-bottom: 10px;
        transition: all 1s;
        box-shadow: 0 0 15px rgba(0, 0, 0, .18)
    }

    #ust-menu>ul>li.acilan .acilan-menu {
        width: 180px;
        height: auto;
        background-color: #fff;
        padding: 5px 0 5px 0
    }

    #ust-menu>ul>li.acilan .acilan-menu::before {
        display: none
    }

    #ust-menu>ul>li.acilan .acilan-menu li {
        color: #fff;
        text-align: left;
        padding: 0 0 0 10px;
        margin: 1px 0 1px 0;
        height: 100%;
        width: calc(100% - 10px)
    }

    #ust-menu>ul>li.acilan .acilan-menu li a {
        color: #000;
        text-align: left;
        font-size: 16px
    }

    #ust-menu>ul>li.acilan .acilan-menu li a:hover {
        color: #000
    }

    #orta_bolge {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 0;
        padding: 10px
    }

    #orta_bolge #orta_sol {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
    }

    #orta_bolge #orta_sag {
        display: none;
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0
    }

    .breadcrumbs-container {
        width: calc(100% - 24px);
        margin: 10px 12px 0 12px;
    }



    .konu {
        margin: 0
    }

    .konu .yazi_alani .yazi_baslik {
        font-size: 1.8rem
    }

    .konu .yazi_alani {
        font-size: 18px
    }

    .yayin-akisi-baslik {
        color: #ff5722;
        font-size: 28px;
        font-weight: 700;
        margin: 15px 0 0 0
    }

    .yayin-akisi {
        width: 100%;
        position: relative;
        float: left;
        margin: 0
    }

    .yayin-akisi:before {
        display: none
    }

    .yayin-akisi ul {
        width: 100%;
        float: left
    }

    .yayin-akisi ul li {
        float: left;
        width: 100%;
        padding-left: 0;
        margin: 10px 0 10px 0;
        padding-bottom: 5px;
        position: relative;
        border-bottom: 1px dotted #e2e2e2
    }

    .yayin-akisi ul li .yayin-akisi-resim {
        float: left;
        width: 100%;
        height: auto;
        border-radius: 3px;
        margin-right: 20px
    }

    .yayin-akisi ul li .yayin-akisi-sol {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-sol .yayin-akisi-icon {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-sol .yayin-akisi-zaman {
        position: relative
    }

    .yayin-akisi ul li .yayin-akisi-kategori {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-kategori a {
        text-transform: uppercase;
        font-size: 11px
    }

    .yayin-akisi ul li .yayin-akisi-adi {
        float: right;
        width: 100%;
        max-height: 84px;
        overflow: hidden;
        display: block
    }

    .yayin-akisi ul li .yayin-akisi-adi a {
        font-size: 20px;
        line-height: 35px;
        font-weight: 700
    }

    .yayin-akisi ul li .yayin-akisi-adi a:hover {
        font-size: 20px;
        line-height: 35px;
        font-weight: 700;
        color: #ff5722
    }

    .yayin-akisi ul li .yayin-akisi-detay {
        float: left;
        width: 100%;
        margin-top: 5px;
        overflow: hidden
    }

    .yayin-akisi ul li .yayin-akisi-detay a {
        font-size: 16px;
        font-weight: 400
    }

    .yayin-akisi ul li .yayin-akisi-detay .yayin-akisi-yazar {
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-detay .yayin-akisi-yazar a {
        font-weight: 400;
        font-size: 11px;
        display: none
    }

    .yayin-akisi ul li .yayin-akisi-detay .responsive_kategori {
        display: block;
        float: left;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 5px
    }

    .yayin-akisi ul li .yayin-akisi-detay .responsive_kategori a {
        font-size: 12px
    }

    .yayin-akisi ul li .yayin-akisi-detay .responsive_zaman {
        margin-bottom: 5px;
        display: block;
        float: right;
        text-transform: uppercase
    }

    .populer_haberler {
        width: 100%
    }

    .populer_haberler ul li {
        padding: 15px;
        width: 100%;
        height: 80px;
        list-style: none;
        display: block;
        position: relative
    }

    .populer_haberler ul li .populer_baslik {
        float: right;
        width: calc(100% - 90px);
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 16px;
        font-weight: 700;
        margin-top: 5px
    }

    .populer_haberler ul li .populer_tarih {
        float: right;
        width: calc(100% - 105px)
    }

}

/* Üye Girişi Sayfası Stilleri */
.uye-giris-container {
    max-width: 450px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.uye-giris-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--kutu-baslik-rengi);
    font-size: 28px;
    font-weight: bold;
}

.uye-giris-form-group {
    margin-bottom: 25px;
}

.uye-giris-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--kutu-baslik-rengi);
    font-size: 14px;
}

.uye-giris-form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.uye-giris-form-group input:focus {
    border-color: var(--ana-renk);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230, 173, 1, 0.1);
}

.uye-giris-form-group input.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.uye-giris-error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}

/* Modern Giriş ve Kayıt Sayfaları */
.uye-giris-kapsayici {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 20px 0;
}

.mod-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    border: 1px solid #f0f0f0;
}

.form-baslik {
    text-align: center;
    margin-bottom: 30px;
}

.form-baslik h2 {
    color: var(--kutu-baslik-rengi);
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-baslik h2 i {
    color: var(--ana-renk);
    margin-left: 5px;
}

.form-baslik p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.form-grubu {
    margin-bottom: 20px;
    position: relative;
}

.form-grubu label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.form-grubu label i {
    color: var(--ana-renk);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.form-grubu input,
.form-grubu textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-grubu input:focus,
.form-grubu textarea:focus {
    border-color: var(--ana-renk);
    box-shadow: 0 0 0 4px rgba(230, 173, 1, 0.1);
    outline: none;
}

.sifre-unuttum-link {
    text-align: right;
    margin-top: 5px;
}

.sifre-unuttum-link a {
    font-size: 13px;
    color: #999;
}

.sifre-unuttum-link a:hover {
    color: var(--ana-renk);
}

.uye-giris-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--ana-renk), var(--ana-renk2));
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uye-giris-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 173, 1, 0.3);
}

.form-alt-ayrim {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.form-alt-ayrim::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}

.form-alt-ayrim span {
    background: #fff;
    padding: 0 15px;
    color: #bbb;
    font-size: 13px;
    position: relative;
    text-transform: uppercase;
}

.yeni-hesap-link {
    text-align: center;
}

.yeni-hesap-link p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.secondary-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--ana-renk);
    color: var(--ana-renk);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--ana-renk);
    color: #fff;
}

/* Mesajlar */
.mesaj-basari,
.mesaj-hata {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.mesaj-basari {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #c6f6d5;
}

.mesaj-hata {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

@media (max-width: 480px) {
    .mod-form {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   GENEL RESPONSİVE & MOBİL SAĞ BOŞLUK / TAŞMA ÖNLEME
   ========================================================================== */

/* Görseller ve medya elementleri kapsayıcıyı asla aşamaz */
img,
/* Medya taşmalarını engelle */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* 992px ve altı (Tablet & Telefonlar) */
@media (max-width: 992px) {

    header,
    #ust {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
        padding: 0 15px !important;
        background: linear-gradient(135deg, #0369a1 0%, #0284c7 60%, #0ea5e9 100%) !important;
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    header #kutu {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        position: relative !important;
    }

    header #kutu #ust_sol {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        position: relative !important;
    }

    header #kutu #ust_sol #logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        height: auto !important;
        max-height: 44px !important;
    }

    header #kutu #ust_sol #logo img {
        width: auto !important;
        max-width: 130px !important;
        height: 38px !important;
        max-height: 42px !important;
        display: block !important;
        object-fit: contain !important;
        margin: 0 !important;
    }

    .menu-toggle,
    header #kutu #ust_sol .menu-toggle {
        position: relative !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 17px !important;
        color: #000 !important;
        background-color: rgba(255, 255, 255, 0.45) !important;
        border-radius: 50% !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
        cursor: pointer !important;
        float: none !important;
    }

    header #kutu #ust_orta {
        width: 100% !important;
        position: absolute !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        margin: 0 !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        float: none !important;
    }

    #ust-menu {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }

    #ust-menu>ul {
        display: none;
        flex-direction: column !important;
        width: 100% !important;
        background: #fff !important;
        border-radius: 10px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        margin-top: 5px !important;
        padding: 6px 0 !important;
    }

    #ust-menu ul>li {
        float: none !important;
        width: 100% !important;
    }

    #ust-menu ul>li>a {
        display: block !important;
        margin: 0 !important;
        padding: 12px 18px !important;
        border-radius: 0 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #1e293b !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }

    #ust-menu ul>li:last-child>a {
        border-bottom: none !important;
    }

    header #kutu #ust_sag {
        display: none !important;
    }

    .arama {
        display: none !important;
    }

    main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 12px !important;
        margin-top: 12px !important;
        margin-bottom: 25px !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }

    main #orta_sol {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    main #orta_sag {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }

    /* Manşet Tablet (16:9 Uyumlu) */
    .manset {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }

    .slid3 {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }

    .slid3:nth-child(1) {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .slid3:nth-child(2),
    .slid3:nth-child(3),
    .slid3:nth-child(4),
    .slid3:nth-child(5) {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .resim3 {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 16 / 9 !important;
    }

    .resim3 img {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
    }

    .slid3:nth-child(1) .resim3 h2 {
        font-size: 14px !important;
        padding: 8px 12px !important;
        line-height: 1.3 !important;
    }

    .slid3:not(:first-child) .resim3 h2 {
        font-size: 11px !important;
        padding: 5px 8px !important;
        line-height: 1.2 !important;
    }

    /* Kartlar Tablet */
    .anasayfa-widget ul {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    footer #alt_bolge {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 12px !important;
        margin: 0 !important;
    }

    footer #footer_sol {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    footer #footer_sag {
        width: 100% !important;
        float: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    footer #footer_sag .alt-menu {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
}

/* 600px ve altı (Telefonlar) */
@media (max-width: 600px) {

    header,
    #ust {
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        padding: 0 12px !important;
    }

    header #kutu #ust_sol #logo img {
        width: auto !important;
        max-width: 120px !important;
        height: 34px !important;
        max-height: 38px !important;
    }

    .menu-toggle,
    header #kutu #ust_sol .menu-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        font-size: 16px !important;
    }

    header #kutu #ust_orta {
        top: 56px !important;
        padding: 0 12px !important;
    }

    .breadcrumbs-container {
        width: calc(100% - 16px) !important;
        margin: 8px 8px 0 8px !important;
    }

    .breadcrumbs__list {
        padding: 5px 10px !important;
        border-radius: 6px !important;
    }

    .breadcrumbs__item {
        font-size: 12px !important;
    }

    /* Manşet Mobil (1280x720 / 16:9 Tam Uyumlu) */
    .manset {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
        height: auto !important;
        width: 100% !important;
    }

    .slid3 {
        border-radius: 6px !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }

    .slid3:nth-child(1) {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .slid3:nth-child(2),
    .slid3:nth-child(3),
    .slid3:nth-child(4),
    .slid3:nth-child(5) {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .resim3 {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 16 / 9 !important;
    }

    .resim3 img {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
    }

    .slid3:nth-child(1) .resim3 h2 {
        font-size: 11.5px !important;
        padding: 4px 8px !important;
        line-height: 1.25 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%) !important;
    }

    .slid3:not(:first-child) .resim3 h2 {
        font-size: 9px !important;
        padding: 3px 5px !important;
        line-height: 1.15 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%) !important;
    }

    /* Kartlar Mobil (16:9 Uyumlu) */
    .anasayfa-widget ul {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .anasayfa-widget ul li {
        padding: 8px !important;
        border-radius: 8px !important;
    }

    .anasayfa-widget ul li .yayin-akisi-resim {
        aspect-ratio: 16 / 9 !important;
        width: 100% !important;
        height: auto !important;
    }

    .anasayfa-widget ul li .yayin-akisi-resim img {
        aspect-ratio: 16 / 9 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .anasayfa-widget ul li .yayin-akisi-adi {
        font-size: 12px !important;
        line-height: 1.3 !important;
        margin-top: 6px !important;
    }

    .anasayfa-widget ul li .yayin-akisi-detay {
        font-size: 10px !important;
        gap: 8px !important;
        margin-top: 5px !important;
        padding-top: 4px !important;
    }

    .kutu {
        margin-bottom: 15px !important;
        border-radius: 8px !important;
    }

    .kutu .kutu_baslik {
        font-size: 14.5px !important;
        padding: 10px 12px !important;
    }

    .kutu .kutu_icerik {
        padding: 10px !important;
    }

    .kategoriler {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .kategoriler a {
        display: inline-flex !important;
        align-items: center !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        border-radius: 20px !important;
        border-left: none !important;
        background: #f1f5f9 !important;
        margin: 0 !important;
        color: #334155 !important;
    }

    .kategoriler a:hover {
        background: #e2e8f0 !important;
        color: #0f172a !important;
        border-left: none !important;
    }

    .populer_haberler {
        width: 100% !important;
        border-radius: 8px !important;
        margin-bottom: 15px !important;
    }

    .populer_haberler ul li {
        width: 100% !important;
        height: auto !important;
        padding: 10px !important;
        display: flex !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .populer_haberler ul li a {
        display: flex !important;
        width: 100% !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .populer_haberler ul li .populer_resim {
        width: 85px !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        min-width: 85px !important;
        float: none !important;
        border-radius: 6px !important;
        object-fit: cover !important;
    }

    .populer_haberler ul li .populer_baslik {
        float: none !important;
        width: auto !important;
        flex: 1 !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        margin-top: 0 !important;
    }

    .populer_haberler ul li .populer_tarih {
        float: none !important;
        width: auto !important;
        font-size: 11px !important;
        padding-left: 0 !important;
        margin-top: 3px !important;
    }
}

/* 420px ve altı (Küçük Telefonlar) */
@media (max-width: 420px) {
    .manset {
        gap: 6px !important;
    }

    .slid3 {
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .slid3:nth-child(1) {
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .slid3:not(:first-child) {
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }

    .slid3:nth-child(1) .resim3 h2 {
        font-size: 10.5px !important;
        padding: 3px 6px !important;
        line-height: 1.2 !important;
    }

    .slid3:not(:first-child) .resim3 h2 {
        font-size: 8px !important;
        padding: 2px 4px !important;
        line-height: 1.1 !important;
    }

    .anasayfa-widget ul {
        gap: 6px !important;
    }

    .anasayfa-widget ul li {
        padding: 6px !important;
    }

    .anasayfa-widget ul li .yayin-akisi-adi {
        font-size: 11.5px !important;
    }
}