/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Değişkenleri */
:root {
    /* Modern Gri Dark Tema (Varsayılan) */
    --primary-gradient-start: #0f0f0f;
    --primary-gradient-end: #1a1a1a;
    --text-white: #ffffff;
    --text-light: #e5e5e5;
    --accent-purple: #dc2626;
    --accent-purple-light: #ef4444;
    --header-bg: rgba(15, 15, 15, 0.9);
    --footer-bg: rgba(26, 26, 26, 0.3);
    --icon-bg: rgba(255, 255, 255, 0.1);
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* Açık Tema */
[data-theme="light"] {
    --primary-gradient-start: #f8f9fa;
    --primary-gradient-end: #e9ecef;
    --text-white: #1a1a1a;
    --text-light: #4a4a4a;
    --accent-purple: #dc2626;
    --accent-purple-light: #ef4444;
    --header-bg: rgba(248, 249, 250, 0.9);
    --footer-bg: rgba(248, 249, 250, 0.9);
    --icon-bg: rgba(26, 26, 26, 0.1);
}

/* Temel Stiller */
body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--text-white);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    /* Footer’ın alta sabitlenmesi için body’i flex kolon yap */
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
.header {
    padding: 1rem 0;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

/* Logo Stilleri */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo resim stilleri */
.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Tema bazlı logo gösterimi */
[data-theme="light"] .light-logo {
    display: block;
}

[data-theme="light"] .dark-logo {
    display: none;
}

[data-theme="dark"] .light-logo {
    display: none;
}

[data-theme="dark"] .dark-logo {
    display: block;
}

/* logo-text ve logo-link sınıfları kaldırıldı */
.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-white);
    text-transform: lowercase;
}

/* Navigation Stilleri */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-purple-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    border-radius: 25px;
    transition: var(--transition);
    color: var(--text-white);
    text-decoration: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    color: var(--text-white);
}

.login-btn i {
    font-size: 0.9rem;
}

/* Tema Değiştirme Butonu */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.theme-toggle:hover {
    background: var(--text-white);
    color: var(--accent-purple);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.theme-toggle i {
    font-size: 1.1rem;
}

/* Main Content Stilleri */
.main {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    /* İçerik alanı mevcut alanı doldursun */
    flex: 1 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

/* Hero Text Stilleri */
.hero-text {
    z-index: 2;
    margin-left: 15%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.title-line-1 {
    display: block;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    font-weight: 400;
}

.title-brand {
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 500px;
}

/* CTA Button Stilleri */
.cta-button {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    color: var(--text-white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Floating Icons Stilleri */
.poster-gallery { position: relative; height: 400px; display:flex; align-items:center; justify-content:center; gap:20px; z-index:1; }
.poster-gallery .poster { width: 180px; height: 260px; object-fit: cover; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.35); transform: rotate(-2deg); transition: transform .3s ease, box-shadow .3s ease; }
.poster-gallery .poster:nth-child(2) { transform: rotate(2deg); }
.poster-gallery .poster:hover { transform: scale(1.05) rotate(0); box-shadow: 0 15px 35px rgba(0,0,0,0.45); }

.icon-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--icon-bg);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    pointer-events: auto;
}

.icon-item:hover {
    transform: scale(1.1);
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--accent-purple);
}

.icon-clapperboard {
    top: 15%;
    right: 25%;
    animation: float 3s ease-in-out infinite;
}

.icon-camera {
    bottom: 25%;
    right: 35%;
    animation: float 3s ease-in-out infinite 1s;
}

.icon-microphone {
    bottom: 5%;
    right: 20%;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Film Başvuru Bölümü */
.film-application-section {
    margin-top: 4rem;
    padding: 3rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.application-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.apply-button {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    color: var(--text-white);
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    text-decoration: none;
    display: inline-block;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Footer Stilleri */
.footer {
    padding: 1.5rem 0;
    background: var(--footer-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    position: relative;
    z-index: 10;
    min-height: 60px;
}

.footer-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    padding: 0;
}

/* Yeni footer düzeni */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--text-white);
}

.footer-meta {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.footer-meta .contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-meta .contact-link:hover {
    color: var(--text-white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 3px;
    background: transparent;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-logo:hover img {
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .footer-nav {
        gap: 1.5rem;
        justify-content: center;
        order: 1;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-meta {
        order: 2;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-logo {
        order: 3;
        justify-content: center;
        gap: 4px;
    }
    
    .footer-logo img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-meta {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}

/* Kullanıcı Profil Stilleri */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile span {
    color: var(--text-white);
    font-weight: 500;
}

/* User dropdown */
/* Bildirim Sistemi */
.notification-menu { position: relative; margin-right: 15px; }
.notification-menu .notification-icon { position: relative; padding: 8px 12px; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-purple);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.notification-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(17,17,17,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    width: 320px;
    margin-top: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1001;
}
.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.notification-header h4 {
    margin: 0;
    color: var(--text-white);
    font-size: 16px;
}
.notification-header .view-all {
    color: var(--accent-purple);
    text-decoration: none;
    font-size: 14px;
}
.notification-list {
    max-height: 300px;
    overflow-y: auto;
}
.notification-item { 
    padding: 15px 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    cursor: pointer; 
    transition: background 0.2s; 
}
.notification-item.unread { 
    background: rgba(255,255,255,0.12); 
    font-weight: 600; 
}
.notification-item.read { 
    opacity: 0.8; 
}
.notification-item:hover {
    background: rgba(255,255,255,0.05);
}
.notification-item:last-child {
    border-bottom: none;
}
.notification-message {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}
.notification-time {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}
.no-notifications {
    padding: 30px 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.user-menu { position: relative; }
.user-dropdown { display:none; position:absolute; right:0; top:100%; background: rgba(17,17,17,0.98); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:8px; width: 200px; margin-top:8px; list-style:none; margin-left:0; padding-left:8px; }
/* Kullanıcı dropdown menüsünün görünür olması için show sınıfı */
.user-dropdown.show {
    display: block;
}

.user-dropdown li { list-style:none; }
.user-dropdown .dropdown-link { display:block; padding:10px 12px; color:#e5e7eb; text-decoration:none; border-radius:8px; }
.user-dropdown .dropdown-link:hover { background: rgba(255,255,255,0.06); }
.user-dropdown .divider { height:1px; margin:6px 0; background: rgba(255,255,255,0.08); }
.user-dropdown .dropdown-danger { color: #ffb4b4; }

/* Açık tema bildirim stilleri */
[data-theme="light"] .notification-dropdown {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .notification-header {
    border-bottom-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .notification-item {
    border-bottom-color: rgba(0,0,0,0.05);
}
[data-theme="light"] .notification-item:hover {
    background: rgba(0,0,0,0.05);
}
[data-theme="light"] .notification-message {
    color: var(--text-light);
}
[data-theme="light"] .notification-time {
    color: rgba(0,0,0,0.5);
}
[data-theme="light"] .no-notifications {
    color: rgba(0,0,0,0.5);
}

[data-theme="light"] .user-dropdown { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .user-dropdown .dropdown-link { color:#111827; }
[data-theme="light"] .user-dropdown .dropdown-link:hover { background: rgba(0,0,0,0.06); }

/* Mobile Menu Styles - İyileştirilmiş */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Responsive Tasarım - Geliştirilmiş */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        margin-left: 0;
    }
    
    .poster-gallery { 
        order: 2; 
        height: 300px; 
        margin-top: 1.5rem;
        gap: 12px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .poster-gallery .poster { 
        width: 140px; 
        height: 200px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .header {
        padding: 1rem 0;
        position: relative;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .main {
        padding-top: 90px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    
    .theme-toggle {
        order: 2;
        margin-right: 1rem;
        position: static;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .poster-gallery {
        height: 250px;
        gap: 10px;
    }
    
    .poster-gallery .poster {
        width: 120px;
        height: 180px;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .film-application-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .application-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .apply-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .poster-gallery {
        height: 200px;
        gap: 8px;
    }
    
    .poster-gallery .poster {
        width: 100px;
        height: 150px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .application-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .poster-gallery .poster {
        width: 90px;
        height: 135px;
    }
    
    .cta-button, .apply-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Stilleri */
button:focus,
a:focus {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}

/* Loading Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Sayfa Geçişleri */
.page-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.is-loaded {
    opacity: 1;
}

.page-transition.is-fading {
    opacity: 0;
}

/* AI Chat widget */
#aiChatWidget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
}

#aiChatWidget .ai-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.35);
}

#aiChatWidget .ai-chat-panel { position: absolute; right: 0; bottom: 70px; width: 420px; max-height: 520px; background: rgba(30,30,30,0.95); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; backdrop-filter: blur(8px); }

#aiChatWidget .ai-chat-header {
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(180deg, #ff2a2a, #bf1e1e);
    color: #fff; padding: 10px 12px; font-weight: 700;
}
#aiChatWidget .ai-header-left { display: flex; align-items: center; gap: 8px; }
#aiChatWidget .ai-header-close { background: transparent; border: none; color: #fff; font-size: 20px; cursor: pointer; }

#aiChatWidget .ai-chat-messages { height: 400px; overflow-y: auto; padding: 14px 16px; }

#aiChatWidget .ai-chat-form {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

#aiChatWidget .ai-chat-form input {
    flex: 1;
    background: #fff;
    color: #111827;
    border-radius: 8px;
    border: none;
    padding: 10px 12px;
}

#aiChatWidget .ai-chat-form button { background: none; }
#aiChatWidget .ai-btn { width: 46px; height: 46px; border-radius: 12px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; }
#aiChatWidget .ai-btn-primary { background: linear-gradient(135deg,#ff2a2a,#bf1e1e); color: #fff; }

#aiChatWidget .ai-row { display: flex; gap: 12px; margin: 14px 0; align-items: flex-start; }
#aiChatWidget .ai-row.user { align-items: center; justify-content: flex-end; }

#aiChatWidget .ai-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,#6b46c1,#4338ca); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; flex: 0 0 28px; }

#aiChatWidget .ai-bubble { padding: 14px 16px; border-radius: 16px; background: #0e0e0e; border: 1px solid rgba(255,255,255,0.08); max-width: 65%; color: #fff; }
#aiChatWidget .ai-bubble-assistant { background: #0b0b0b; display: flex; align-items: flex-start; gap: 8px; }
#aiChatWidget .ai-spark { display: inline-block; margin: 0 6px 0 0; font-size: 16px; line-height: 1.2; }

#aiChatWidget .user .ai-userline { background: #3a3a3a; color: #e5e7eb; border-radius: 16px; padding: 12px 16px; }
#aiChatWidget .user .ai-userline { display: inline-block; max-width: 65%; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
#aiChatWidget .ai-row.user .ai-avatar { margin-left: 10px; }

#aiChatWidget .ai-text {
    font-size: 0.95rem;
    line-height: 1.45;
}

/* Çerez Banner Stilleri */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text h4 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.accept-btn {
    background: var(--primary-color);
    color: white;
}

.accept-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.necessary-btn {
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.necessary-btn:hover {
    background: var(--hover-color);
}

.settings-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.settings-btn:hover {
    background: var(--hover-color);
    color: var(--text-primary);
}

/* Çerez Ayarları Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background: var(--card-bg);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: var(--hover-color);
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-category-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1rem;
}

.cookie-category p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-color);
    transition: 0.3s;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
    background-color: white;
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}
