#kvkk-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(15, 15, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    animation: bannerSlideUp 0.4s ease;
}

@keyframes bannerSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

#kvkk-cookie-banner .kvkk-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

#kvkk-cookie-banner .kvkk-text {
    flex: 1;
    min-width: 200px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#kvkk-cookie-banner .kvkk-text a {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#kvkk-cookie-banner .kvkk-text a:hover {
    color: #bfdbfe;
}

#kvkk-cookie-banner .kvkk-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

#kvkk-cookie-banner .btn-kvkk-detail {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

#kvkk-cookie-banner .btn-kvkk-detail:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: white;
    background: rgba(255, 255, 255, 0.07);
}

#kvkk-cookie-banner .btn-kvkk-accept {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

#kvkk-cookie-banner .btn-kvkk-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

@media (max-width: 600px) {
    #kvkk-cookie-banner {
        padding: 12px 16px;
        gap: 12px;
    }
    #kvkk-cookie-banner .kvkk-text {
        font-size: 0.82rem;
    }
    #kvkk-cookie-banner .kvkk-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
