@tailwind base;
@tailwind components;
@tailwind utilities;
/* Varsayılan olarak (mobil için) */
.desktop-banner,
.button-ust-sag,
.button-alt-buyuk {
    display: none; /* Masaüstü banner'ı ve butonları mobilde gizle */
}

.mobile-banner-link {
    display: block; /* Mobil linkin tam genişlikte yer kaplamasını sağla */
}

.mobile-banner {
    display: block; /* Mobil banner'ı göster */
}


/* Tablet ve daha geniş ekranlar için (768px ve üzeri) */
@media (min-width: 768px) {
    .mobile-banner-link {
        display: none; /* Mobil banner linkini geniş ekranlarda gizle */
    }

    .desktop-banner {
        display: block; /* Masaüstü banner'ını geniş ekranlarda göster */
    }

    .button-alt-buyuk {
        display: block; /* Alt büyük butonu göster */
        /* Zaten media query içinde bu buton için stiliniz var, 
           bu kural o stillerin uygulanmasını sağlar. */
    }

    /* Üst sağ buton 992px'de görünür hale geliyor, o yüzden
       mevcut @media (min-width: 992px) kuralınızdaki
       display: block; tanımı zaten işini yapacaktır.
       Ancak netlik için buraya da ekleyebilirsiniz. */
    .button-ust-sag {
        display: block; /* Butonun görünürlüğünü ilgili media query'de yönetebilirsiniz. */
        /* Mevcut kodunuz 992px'den sonra bunu zaten yapıyor. */
    }
}
/* * BENZERSİZ KAPSAYICI STİLLERİ
                 * Tüm stiller #bilsem-tanitim-sayfasi-v1 ID'si ile kapsüllenmiştir.
                 * Bu sayede sitenizdeki diğer CSS'lerle çakışmaz.
                */
#bilsem-tanitim-sayfasi-v1 {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #475569;
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
    position: relative; /* Arka plan için konumlandırma bağlamı */
    z-index: 0; /* Arka planın diğer elementlerin altında kalmasını sağlar */
}

    /* Animated Background */
    #bilsem-tanitim-sayfasi-v1 .bts-background-shapes {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

        #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span {
            position: absolute;
            bottom: -150px;
            background-color: rgba(79, 70, 229, 0.05);
            animation: bts-floatUp 25s linear infinite;
        }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(1) {
                width: 80px;
                height: 80px;
                left: 10%;
                animation-duration: 35s;
                border-radius: 50%;
            }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(2) {
                width: 100px;
                height: 100px;
                left: 20%;
                animation-duration: 20s;
                animation-delay: 2s;
            }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(3) {
                width: 40px;
                height: 40px;
                left: 35%;
                animation-duration: 40s;
                border-radius: 50%;
            }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(4) {
                width: 120px;
                height: 120px;
                left: 50%;
                animation-duration: 30s;
                animation-delay: 5s;
            }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(5) {
                width: 60px;
                height: 60px;
                left: 65%;
                animation-duration: 22s;
                border-radius: 50%;
            }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(6) {
                width: 90px;
                height: 90px;
                left: 80%;
                animation-duration: 38s;
                animation-delay: 3s;
            }

            #bilsem-tanitim-sayfasi-v1 .bts-background-shapes span:nth-child(7) {
                width: 50px;
                height: 50px;
                left: 90%;
                animation-duration: 28s;
                border-radius: 50%;
            }

@keyframes bts-floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

/* Header */
#bilsem-tanitim-sayfasi-v1 .bts-main-header {
    padding: 4rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: -2rem;
    position: relative;
    z-index: 10;
}

    #bilsem-tanitim-sayfasi-v1 .bts-main-header h1 {
        font-weight: 800;
    }

    #bilsem-tanitim-sayfasi-v1 .bts-main-header p {
        max-width: 650px;
        margin: 1rem auto 0;
        opacity: 0.9;
    }

/* Content Sections */
#bilsem-tanitim-sayfasi-v1 .bts-content-section {
    background-color: white;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    #bilsem-tanitim-sayfasi-v1 .bts-content-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

#bilsem-tanitim-sayfasi-v1 .bts-section-image {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    display: block;
    max-width: 65%;
    margin: 0 auto;
    border-radius: 20px !important;
    background: #fff;
}

#bilsem-tanitim-sayfasi-v1 .bts-section-title {
    font-weight: 800;
    color: #1e293b;
}

#bilsem-tanitim-sayfasi-v1 .bts-section-subtitle {
    font-weight: 700;
    color: #4f46e5;
}

#bilsem-tanitim-sayfasi-v1 .bts-text-content p, #bilsem-tanitim-sayfasi-v1 .bts-text-content li {
    line-height: 1.75;
}

#bilsem-tanitim-sayfasi-v1 .bts-highlight-list {
    list-style: none;
    padding-left: 0;
}

    #bilsem-tanitim-sayfasi-v1 .bts-highlight-list li {
        display: flex;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    #bilsem-tanitim-sayfasi-v1 .bts-highlight-list .icon {
        color: #16a34a;
        margin-right: 0.75rem;
        margin-top: 5px;
        flex-shrink: 0;
    }

/* Detail boxes */
#bilsem-tanitim-sayfasi-v1 .bts-detail-box {
    background-color: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    height: 100%;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
}

    #bilsem-tanitim-sayfasi-v1 .bts-detail-box-title .icon {
        color: #6366f1;
        margin-right: 0.5rem;
    }

#bilsem-tanitim-sayfasi-v1 .bts-detail-box ul {
    list-style-type: none;
    padding-left: 0;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box .explanation {
    font-size: 0.95rem;
    line-height: 1.6;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box .example-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Tema renkleri */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
}

/* Temel stiller */
.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

/* Özel buton stilleri */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Test question image container */
.question-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.question-image {
    transition: all 0.3s ease;
}

.question-image:hover {
    transform: scale(1.02);
}

/* Option overlay temel stiller */
.option-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    min-width: 30px;
    min-height: 30px;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: absolute;
    z-index: 20;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    background-color: transparent;
    border: 2px solid transparent;
    display: block;
}

.option-overlay:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 25 !important;
}

.option-overlay.selected {
    animation: pulseSelection 0.6s ease-in-out;
    z-index: 22 !important;
    transform: scale(1.02);
}

.option-overlay:active {
    transform: scale(0.98);
}

/* Debug mode overlay stiller */
.debug-mode .option-overlay {
    border: 3px dashed rgba(255, 0, 0, 0.9) !important;
    background-color: rgba(255, 255, 0, 0.4) !important;
    z-index: 25 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    animation: debugPulse 2s infinite;
}

.debug-mode .option-overlay::before {
    content: attr(data-option);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    z-index: 30;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Debug mode genel ayarları */
.debug-mode {
    position: relative;
}

.debug-mode::after {
    content: "?? DEBUG MODE AKTIF - Overlay'ler Görünür";
    position: fixed;
    top: 50px;
    right: 10px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 1000;
    font-family: monospace;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Emergency overlay stiller */
.emergency-overlay {
    position: absolute !important;
    background: rgba(255, 0, 0, 0.8) !important;
    border: 4px solid yellow !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    color: white !important;
    font-weight: bold !important;
    text-align: center !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
    animation: emergencyPulse 1s infinite alternate !important;
}

.emergency-overlay:hover {
    background: rgba(255, 100, 0, 0.9) !important;
    transform: scale(1.1) !important;
    border-color: white !important;
}

/* Fallback overlay stiller */
.fallback-overlay {
    position: absolute !important;
    background: rgba(255, 165, 0, 0.5) !important;
    border: 3px solid orange !important;
    z-index: 25 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3) !important;
    animation: fallbackPulse 2s infinite !important;
}

.fallback-overlay:hover {
    background: rgba(255, 140, 0, 0.7) !important;
    transform: scale(1.05) !important;
    border-color: #ff8c00 !important;
    box-shadow: 0 6px 12px rgba(255, 165, 0, 0.5) !important;
}

.fallback-overlay::before {
    content: attr(data-option) ' (TEMP)';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    z-index: 30;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes fallbackPulse {
    0%, 100% { 
        border-color: orange;
        background-color: rgba(255, 165, 0, 0.4);
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }
    50% { 
        border-color: #ff8c00;
        background-color: rgba(255, 165, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
}

/* Header */
#bilsem-tanitim-sayfasi-v1 .bts-main-header {
    padding: 4rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: -2rem;
    position: relative;
    z-index: 10;
}

    #bilsem-tanitim-sayfasi-v1 .bts-main-header h1 {
        font-weight: 800;
    }

    #bilsem-tanitim-sayfasi-v1 .bts-main-header p {
        max-width: 650px;
        margin: 1rem auto 0;
        opacity: 0.9;
    }

/* Content Sections */
#bilsem-tanitim-sayfasi-v1 .bts-content-section {
    background-color: white;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    #bilsem-tanitim-sayfasi-v1 .bts-content-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

#bilsem-tanitim-sayfasi-v1 .bts-section-image {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    display: block;
    max-width: 65%;
    margin: 0 auto;
    border-radius: 20px !important;
    background: #fff;
}

#bilsem-tanitim-sayfasi-v1 .bts-section-title {
    font-weight: 800;
    color: #1e293b;
}

#bilsem-tanitim-sayfasi-v1 .bts-section-subtitle {
    font-weight: 700;
    color: #4f46e5;
}

#bilsem-tanitim-sayfasi-v1 .bts-text-content p, #bilsem-tanitim-sayfasi-v1 .bts-text-content li {
    line-height: 1.75;
}

#bilsem-tanitim-sayfasi-v1 .bts-highlight-list {
    list-style: none;
    padding-left: 0;
}

    #bilsem-tanitim-sayfasi-v1 .bts-highlight-list li {
        display: flex;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    #bilsem-tanitim-sayfasi-v1 .bts-highlight-list .icon {
        color: #16a34a;
        margin-right: 0.75rem;
        margin-top: 5px;
        flex-shrink: 0;
    }

/* Detail boxes */
#bilsem-tanitim-sayfasi-v1 .bts-detail-box {
    background-color: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    height: 100%;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
}

    #bilsem-tanitim-sayfasi-v1 .bts-detail-box-title .icon {
        color: #6366f1;
        margin-right: 0.5rem;
    }

#bilsem-tanitim-sayfasi-v1 .bts-detail-box ul {
    list-style-type: none;
    padding-left: 0;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box .explanation {
    font-size: 0.95rem;
    line-height: 1.6;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box .example-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Tema renkleri */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
}

/* Temel stiller */
.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

/* Özel buton stilleri */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Test question image container */
.question-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.question-image {
    transition: all 0.3s ease;
}

.question-image:hover {
    transform: scale(1.02);
}

/* Option overlay temel stiller */
.option-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    min-width: 30px;
    min-height: 30px;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: absolute;
    z-index: 20;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    background-color: transparent;
    border: 2px solid transparent;
    display: block;
}

.option-overlay:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 25 !important;
}

.option-overlay.selected {
    animation: pulseSelection 0.6s ease-in-out;
    z-index: 22 !important;
    transform: scale(1.02);
}

.option-overlay:active {
    transform: scale(0.98);
}

/* Debug mode overlay stiller */
.debug-mode .option-overlay {
    border: 3px dashed rgba(255, 0, 0, 0.9) !important;
    background-color: rgba(255, 255, 0, 0.4) !important;
    z-index: 25 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    animation: debugPulse 2s infinite;
}

.debug-mode .option-overlay::before {
    content: attr(data-option);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    z-index: 30;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Debug mode genel ayarları */
.debug-mode {
    position: relative;
}

.debug-mode::after {
    content: "?? DEBUG MODE AKTIF - Overlay'ler Görünür";
    position: fixed;
    top: 50px;
    right: 10px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 1000;
    font-family: monospace;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Emergency overlay stiller */
.emergency-overlay {
    position: absolute !important;
    background: rgba(255, 0, 0, 0.8) !important;
    border: 4px solid yellow !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    color: white !important;
    font-weight: bold !important;
    text-align: center !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
    animation: emergencyPulse 1s infinite alternate !important;
}

.emergency-overlay:hover {
    background: rgba(255, 100, 0, 0.9) !important;
    transform: scale(1.1) !important;
    border-color: white !important;
}

/* Fallback overlay stiller */
.fallback-overlay {
    position: absolute !important;
    background: rgba(255, 165, 0, 0.5) !important;
    border: 3px solid orange !important;
    z-index: 25 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(255,165,0,0.3) !important;
    animation: fallbackPulse 2s infinite !important;
}

.fallback-overlay:hover {
    background: rgba(255, 140, 0, 0.7) !important;
    transform: scale(1.05) !important;
    border-color: #ff8c00 !important;
    box-shadow: 0 6px 12px rgba(255,165,0,0.5) !important;
}

.fallback-overlay::before {
    content: attr(data-option) ' (TEMP)';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    z-index: 30;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes fallbackPulse {
    0%, 100% { 
        border-color: orange;
        background-color: rgba(255, 165, 0, 0.4);
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }
    50% { 
        border-color: #ff8c00;
        background-color: rgba(255, 165, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
}

/* Header */
#bilsem-tanitim-sayfasi-v1 .bts-main-header {
    padding: 4rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: -2rem;
    position: relative;
    z-index: 10;
}

    #bilsem-tanitim-sayfasi-v1 .bts-main-header h1 {
        font-weight: 800;
    }

    #bilsem-tanitim-sayfasi-v1 .bts-main-header p {
        max-width: 650px;
        margin: 1rem auto 0;
        opacity: 0.9;
    }

/* Content Sections */
#bilsem-tanitim-sayfasi-v1 .bts-content-section {
    background-color: white;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    #bilsem-tanitim-sayfasi-v1 .bts-content-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

#bilsem-tanitim-sayfasi-v1 .bts-section-image {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    display: block;
    max-width: 65%;
    margin: 0 auto;
    border-radius: 20px !important;
    background: #fff;
}

#bilsem-tanitim-sayfasi-v1 .bts-section-title {
    font-weight: 800;
    color: #1e293b;
}

#bilsem-tanitim-sayfasi-v1 .bts-section-subtitle {
    font-weight: 700;
    color: #4f46e5;
}

#bilsem-tanitim-sayfasi-v1 .bts-text-content p, #bilsem-tanitim-sayfasi-v1 .bts-text-content li {
    line-height: 1.75;
}

#bilsem-tanitim-sayfasi-v1 .bts-highlight-list {
    list-style: none;
    padding-left: 0;
}

    #bilsem-tanitim-sayfasi-v1 .bts-highlight-list li {
        display: flex;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    #bilsem-tanitim-sayfasi-v1 .bts-highlight-list .icon {
        color: #16a34a;
        margin-right: 0.75rem;
        margin-top: 5px;
        flex-shrink: 0;
    }

/* Detail boxes */
#bilsem-tanitim-sayfasi-v1 .bts-detail-box {
    background-color: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    height: 100%;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
}

    #bilsem-tanitim-sayfasi-v1 .bts-detail-box-title .icon {
        color: #6366f1;
        margin-right: 0.5rem;
    }

#bilsem-tanitim-sayfasi-v1 .bts-detail-box ul {
    list-style-type: none;
    padding-left: 0;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box .explanation {
    font-size: 0.95rem;
    line-height: 1.6;
}

#bilsem-tanitim-sayfasi-v1 .bts-detail-box .example-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Tema renkleri */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
}

/* Temel stiller */
.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

/* Özel buton stilleri */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Test question image container */
.question-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.question-image {
    transition: all 0.3s ease;
}

.question-image:hover {
    transform: scale(1.02);
}

/* Option overlay temel stiller */
.option-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    min-width: 30px;
    min-height: 30px;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: absolute;
    z-index: 20;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    background-color: transparent;
    border: 2px solid transparent;
    display: block;
}

.option-overlay:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 25 !important;
}

.option-overlay.selected {
    animation: pulseSelection 0.6s ease-in-out;
    z-index: 22 !important;
    transform: scale(1.02);
}

.option-overlay:active {
    transform: scale(0.98);
}

/* Debug mode overlay stiller */
.debug-mode .option-overlay {
    border: 3px dashed rgba(255, 0, 0, 0.9) !important;
    background-color: rgba(255, 255, 0, 0.4) !important;
    z-index: 25 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    animation: debugPulse 2s infinite;
}

.debug-mode .option-overlay::before {
    content: attr(data-option);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    z-index: 30;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Debug mode genel ayarları */
.debug-mode {
    position: relative;
}

.debug-mode::after {
    content: "?? DEBUG MODE AKTIF - Overlay'ler Görünür";
    position: fixed;
    top: 50px;
    right: 10px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 1000;
    font-family: monospace;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Emergency overlay stiller */
.emergency-overlay {
    position: absolute !important;
    background: rgba(255, 0, 0, 0.8) !important;
    border: 4px solid yellow !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    color: white !important;
    font-weight: bold !important;
    text-align: center !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
    animation: emergencyPulse 1s infinite alternate !important;
}

.emergency-overlay:hover {
    background: rgba(255, 100, 0, 0.9) !important;
    transform: scale(1.1) !important;
    border-color: white !important;
}

/* Fallback overlay stiller */
.fallback-overlay {
    position: absolute !important;
    background: rgba(255, 165, 0, 0.5) !important;
    border: 3px solid orange !important;
    z-index: 25 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: block !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3) !important;
    animation: fallbackPulse 2s infinite !important;
}

.fallback-overlay:hover {
    background: rgba(255, 140, 0, 0.7) !important;
    transform: scale(1.05) !important;
    border-color: #ff8c00 !important;
    box-shadow: 0 6px 12px rgba(255, 165, 0, 0.5) !important;
}

.fallback-overlay::before {
    content: attr(data-option) ' (TEMP)';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    z-index: 30;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes fallbackPulse {
    0%, 100% { 
        border-color: orange;
        background-color: rgba(255, 165, 0, 0.4);
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }
    50% { 
        border-color: #ff8c00;
        background-color: rgba(255, 165, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    }
}

@keyframes slideDownFade {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced success feedback animation */
@keyframes successFeedback {
    0% { 
        background-color: rgba(34, 197, 94, 0.3);
        border-color: #22c55e;
        transform: scale(1.02);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    25% {
        background-color: rgba(34, 197, 94, 0.6);
        border-color: #16a34a;
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.3);
    }
    50% { 
        background-color: rgba(34, 197, 94, 0.8);
        border-color: #15803d;
        transform: scale(1.08);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
    75% {
        background-color: rgba(34, 197, 94, 0.6);
        border-color: #16a34a;
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.1);
    }
    100% { 
        background-color: rgba(34, 197, 94, 0.4);
        border-color: #22c55e;
        transform: scale(1.02);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Thumbnail Navigation Styles */
.thumbnail {
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
    border-color: #007bff !important;
}

.thumbnail.active {
    border: 2px solid #007bff !important;
    opacity: 1 !important;
    transform: scale(1.02);
}

/* Thumbnail container responsive design */
#thumbnailContainer {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #007bff #f1f1f1;
}

#thumbnailContainer::-webkit-scrollbar {
    height: 6px;
}

#thumbnailContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#thumbnailContainer::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 3px;
}

#thumbnailContainer::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Mobile responsive for thumbnails */
@media (max-width: 768px) {
    .thumbnail {
        width: 48px !important;
        height: 36px !important;
        margin: 0 4px;
    }
    
    #thumbnailContainer {
        justify-content: flex-start !important;
        padding: 0 16px;
    }
}

/* Tablet responsive for thumbnails */
@media (min-width: 769px) and (max-width: 1024px) {
    .thumbnail {
        width: 56px !important;
        height: 42px !important;
    }
}
