/* ============================================
   DEĞİŞKENLER - DARK GAMING THEME
   ============================================ */
:root {
    --bg-color: #0e1621;
    --card-bg: #1b2838;
    --text-main: #c7d5e0;
    --text-muted: #8f98a0;
    --accent: #1a9fff;
    --accent-hover: #66c0f4;
    --secondary: #5c7e10;
    --border-radius: 8px;
    --header-bg: #171a21;
    --footer-bg: #171a21;
}

/* ============================================
   TEMEL SAYFA DÜZENİ
   ============================================ */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
}

a:hover {
    color: var(--accent-hover);
}

/* =======================================
   HEADER & NAVIGATION
   ======================================= */
.main-header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;

    background-color: rgba(23, 26, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    opacity: 0.9;
}

.nav-item:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
    transform: translateY(-1px);
}

.nav-btn-outline {
    background-color: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn-outline:hover {
    background-color: rgba(26, 159, 255, 0.1);
    box-shadow: 0 0 15px rgba(26, 159, 255, 0.4);
    transform: translateY(-1px);
}

/* --- Profil Menüsü --- */
.profil-menu-container {
    position: relative;
    margin-left: 10px;
}

.profil-trigger {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 50%; /* Tam yuvarlak */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 0;
}

.profil-trigger:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,255,255,0.05);
}

/* Açılır Menü (Dropdown) */
.profil-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 180px;
    background: #1b2838;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.profil-menu-container:hover .profil-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
}

.dropdown-item.danger:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 5px 0;
}

@media (max-width: 768px) {
    
    .main-header {
        padding: 0 15px;
        height: 55px;
    }

    .logo {
        font-size: 1rem;
    }
    
    .logo i {
        margin-right: 5px !important;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-item {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .nav-btn-outline {
        font-size: 0.85rem;
        padding: 6px 12px;
        gap: 5px;
    }
    
    @media (max-width: 380px) {
        .nav-btn-outline i {
            display: none;
        }
        .logo span {
            /* Eğer logo yazısı çok uzun gelirse sadece ikonu bırakabiliriz */
            /* display: none; */ 
        }
    }

    .nav-btn-outline[href="ekle.php"] {
        font-size: 0;
        padding: 8px 10px;
        gap: 0;
    }

    .nav-btn-outline[href="ekle.php"] i {
        font-size: 1.1rem;
        margin: 0 !important;
        display: flex;
    }


}

/* ============================================
   PROFIL SAYFASI TASARIMI
   ============================================ */
.profil-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.profil-sidebar {
    flex: 0 0 320px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    position: sticky;
    top: 20px;
}

.profil-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent);
    border: 2px solid rgba(26, 159, 255, 0.2);
}

.profil-isim {
    margin: 0;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
}

.profil-kadi {
    color: var(--accent);
    font-size: 0.95rem;
    margin: 5px 0 0;
    font-weight: 500;
}

.profil-email {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 5px 0 15px;
}

.profil-rozet {
    display: inline-block;
    background: rgba(81, 207, 102, 0.1);
    color: #51cf66;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(81, 207, 102, 0.2);
    margin-bottom: 25px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
    border: 1px solid transparent;
}

.menu-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

.menu-btn.cikis {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
    margin-top: 5px;
}

.menu-btn.cikis:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.profil-content {
    flex: 1;
}

.bilgi-seridi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.bilgi-kutu {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.bilgi-ikon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.bilgi-detay {
    display: flex;
    flex-direction: column;
}

.bilgi-detay span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.bilgi-detay strong {
    font-size: 1.2rem;
    color: #fff;
}
.profil-istatistik-kapsayici {
    background: rgba(23, 26, 33, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
}

.panel-baslik {
    margin: 0 0 25px 0;
    font-size: 1.1rem;
    color: var(--text-main);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ozet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
}

.ozet-kutu {
    background: var(--card-bg);
    padding: 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.2s;
}

.ozet-kutu:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.1);
}

.ozet-ikon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ozet-ikon.blue { color: #66c0f4; background: rgba(102, 192, 244, 0.1); }
.ozet-ikon.green { color: #51cf66; background: rgba(81, 207, 102, 0.1); }
.ozet-ikon.red { color: #ff6b6b; background: rgba(255, 107, 107, 0.1); }
.ozet-ikon.yellow { color: #ffd43b; background: rgba(255, 212, 59, 0.1); }

.ozet-sayi {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.ozet-etiket {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 850px) {
    .profil-container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .profil-sidebar {
        width: 100% !important;
        position: static !important;
        padding: 25px 20px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        border: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        background: transparent !important;
    }

    .profil-avatar {
        width: 80px !important;
        height: 80px !important;
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
    }

    .profil-isim {
        font-size: 1.3rem !important;
    }

    .sidebar-menu {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        padding-top: 15px !important;
        flex-wrap: wrap !important;
    }

    .menu-btn {
        flex: 1 !important;
        justify-content: center !important;
        white-space: nowrap !important;
        font-size: 0.85rem !important;
        padding: 10px !important;
    }

    .bilgi-seridi {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .bilgi-kutu {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px 10px !important;
        gap: 10px !important;
    }

    .bilgi-ikon {
        margin: 0 auto !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .bilgi-detay strong {
        font-size: 0.95rem !important;
    }

    .profil-istatistik-kapsayici {
        padding: 20px !important;
    }

    .ozet-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .ozet-kutu {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
        justify-content: center !important;
    }

    .ozet-ikon {
        margin: 0 auto 10px auto !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }

    .ozet-sayi {
        font-size: 1.3rem !important;
    }

    .ozet-etiket {
        font-size: 0.75rem !important;
    }
}

/* ============================================
   FORM ELEMENTLERİ
   ============================================ */
.form-container {
    max-width: 400px;
    margin: 20px auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px 0;
    border: 1px solid #16202d;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #0e1621;
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical !important;
    min-height: 100px;
    max-height: 300px; 
    width: 100% !important;
    overflow-y: auto !important;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #0e1621;
}

button {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--accent-hover);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #16202d;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
    background-color: #0e1621;
    color: var(--text-main);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    background-color: #0e1621;
}

.form-control-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #0e1621;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a9fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    padding-right: 45px !important;
    border: 2px solid #16202d;
    transition: all 0.3s ease;
}

.form-control-select:hover {
    border-color: var(--accent);
    background-color: #0e1621;
}

.form-control-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 159, 255, 0.2);
    border-color: var(--accent);
    outline: none;
    background-color: #0e1621;
}

option {
    background-color: #0e1621;
    color: var(--text-main);
    padding: 10px;
    font-size: 1rem;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-buttons .btn-primary {
    flex: 1;
}

/* ============================================
   MESAJ BİLDİRİMLERİ
   ============================================ */
.mesaj {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    animation: fadeIn 0.3s ease-out;
}

.mesaj i {
    font-size: 1.1rem;
}

.mesaj.hata {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.mesaj.basari {
    background-color: rgba(81, 207, 102, 0.1);
    color: #51cf66;
    border: 1px solid rgba(81, 207, 102, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ARŞİV KARTLARI
   ============================================ */

.arsiv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.kart {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #16202d;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 159, 255, 0.2);
    border-color: var(--accent);
}

.kart-gorsel-kapsayici {
    position: relative;
    width: 100%;
    padding-top: 130%;
    overflow: hidden;
}

.kart-gorsel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16202d;
    color: var(--text-muted);
    font-size: 3rem;
    font-weight: bold;
}

.puan-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(14, 22, 33, 0.9);
    color: #FFD700;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 2;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.kart:hover .puan-badge {
    opacity: 1;
    transform: translateY(0);
}

.kart-icerik {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 5px;
}

.kart-baslik {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kart-alt-satir {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 6px;
}

.kart-format {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.8;
}

.durum-badge {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.durum-tamam { color: #51cf66; }
.durum-istek { color: #ffd43b; }    

/* ============================================
   DETAY SAYFASI TASARIMI
   ============================================ */
.detay-arkaplan-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.25);
    transform: scale(1.1);
}

.detay-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: rgba(27, 40, 56, 0.85);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-top: 20px;
}

/* Sol Taraf: Poster */
.detay-poster-alani {
    width: 350px; 
    min-width: 350px;
    max-width: 350px;
    height: 525px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.detay-poster-alani img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.detay-poster-alani img:hover {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16202d;
    color: var(--text-muted);
    font-size: 5rem;
    font-weight: bold;
}

/* Sağ Taraf: Bilgiler */
.detay-bilgi-alani {
    flex: 1;
    color: #fff;
}

.detay-baslik-buyuk {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-family: 'Segoe UI', sans-serif;
}

/* Etiketler (Tags) */
.etiket-grubu {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.etiket {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.etiket.format-badge { background: rgba(26, 159, 255, 0.2); color: #66c0f4; border-color: rgba(26, 159, 255, 0.3); }
.etiket.tur-badge { background: rgba(255, 255, 255, 0.05); }

/* Puanlama Yıldızları */
.detay-puan-yildiz {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detay-puan-yildiz i.dolu { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
.detay-puan-yildiz i.bos { color: #444; }
.detay-puan-yazi { font-size: 1rem; color: #888; margin-left: 10px; font-weight: normal; }

/* Yorum Kutusu */
.detay-yorum-kutusu {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
}

.detay-alt-butonlar {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

/* Detay Kartı Kapatma Butonu */
.detay-container {
    position: relative;
}

.btn-kapat {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.btn-kapat:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: #ff6b6b;
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    /* ============================
       DETAY SAYFASI MOBİL AYARLARI
       ============================ */
    
    .detay-container {
        flex-direction: column !important;
        padding: 40px 20px 20px 20px !important; 
        width: 90% !important;
        margin: 20px auto !important;
        gap: 20px !important;
        box-sizing: border-box;
    }

    .detay-poster-alani {
        width: 100% !important;
        max-width: 200px !important;
        height: auto !important;
        margin: 0 auto !important;
        min-width: unset !important;
    }

    .detay-poster-alani img, 
    .detay-poster-alani .no-image {
        border-radius: 8px !important;
        height: auto !important;
        aspect-ratio: 2/3;
    }

    /* Başlık ve Metinler */
    .detay-bilgi-alani {
        text-align: center !important;
        width: 100% !important;
    }

    .detay-baslik-buyuk {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .detay-puan-yildiz {
        justify-content: center !important;
    }

    .etiket-grubu {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 5px !important;
        margin-bottom: 15px !important;
    }

    .etiket {
        font-size: 0.8rem !important;
        padding: 6px 12px !important; 
        margin: 0 !important;
        white-space: nowrap; 
    }

    .detay-alt-butonlar {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-kapat {
        top: 10px !important;
        right: 10px !important;
        background: rgba(0,0,0,0.5) !important;
    }
}

/* ============================================
   BUTONLAR
   ============================================ */
.buton-grubu {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #16202d;
}

.btn-duzenle,
.btn-sil {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.btn-duzenle {
    background-color: var(--card-bg);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-duzenle:hover {
    background-color: var(--accent);
    color: #fff;
}

.btn-sil {
    background-color: var(--card-bg);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.btn-sil:hover {
    background-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.btn-iptal {
    flex: 1;
    padding: 12px;
    background-color: transparent;
    color: var(--text-muted);
    border: 2px solid #16202d;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-iptal:hover {
    background-color: #16202d;
    color: var(--text-main);
    border-color: var(--accent);
}

.btn-onay {
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.btn-onay:hover {
    background-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    background-color: transparent;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 159, 255, 0.3);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
}

/* ============================================
   MODAL (SİLME ONAYI)
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.modal-kutu {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #16202d;
    animation: modalGelis 0.3s ease-out;
}

.modal-baslik {
    margin-top: 0;
    color: #ff6b6b;
    font-size: 1.5rem;
}

.modal-butonlar {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

.btn-iptal,
.btn-onay {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: var(--card-bg);
}

.btn-iptal {
    color: var(--text-muted);
    border: 1px solid #16202d;
}

.btn-iptal:hover {
    background-color: #16202d;
    color: var(--text-main);
}

@keyframes modalGelis {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   SAYFALAMA
   ============================================ */
.sayfalama {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #16202d;
}

.sayfa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #16202d;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.sayfa-link:hover,
.sayfa-link.aktif {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(26, 159, 255, 0.3);
}

.sayfa-nokta {
    display: flex;
    align-items: flex-end;
    color: var(--text-muted);
    padding: 0 5px;
}

/* ============================================
   ARŞİV TOOLBAR (Arama + Sekmeler)
   ============================================ */
.arsiv-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    background-color: var(--card-bg);
}

.filtre-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.arama-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.arama-input {
    width: 250px !important;
    padding: 10px 15px 10px 40px !important;
    border: 1px solid #16202d;
    background-color: #0e1621;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s;
    margin: 0 !important;
}

.arama-input:focus {
    background-color: #0e1621;
    border-color: var(--accent);
    width: 280px !important;
    box-shadow: 0 2px 10px rgba(26, 159, 255, 0.2);
}

.arama-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 2;
}

.btn-ara-gizli {
    display: none;
}

.tab-container {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
}

.tab-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 5px;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.aktif {
    color: var(--accent);
}

.tab-btn.aktif::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: cizgiUzama 0.3s ease;
}

@keyframes cizgiUzama {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.tab-icerik {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-icerik.aktif {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px){

    /* ============================
       ARŞİV SAYFASI MOBİL DÜZENİ
       ============================ */

    main > div[style*="display:flex"] {
        margin-bottom: 15px !important;
        padding: 0 5px;
    }
    
    main > div[style*="display:flex"] h2 {
        font-size: 1.5rem !important;
    }

    main > div[style*="display:flex"] .btn {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
    }

    .arsiv-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
        padding: 15px !important;
    }

    .filtre-form {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .arama-wrapper {
        width: 100%;
    }

    .arama-input {
        width: 100% !important;
        box-sizing: border-box;
    }

    .tab-container {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        justify-content: flex-start !important;
        gap: 20px !important;
        padding-bottom: 5px;
        
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none;
    }
    
    .tab-container::-webkit-scrollbar { 
        display: none; 
    }

    .tab-btn {
        flex-shrink: 0;
        font-size: 1rem !important;
        padding: 5px 0 !important;
        color: var(--text-muted);
    }
    
    .tab-btn.aktif {
        color: var(--accent) !important;
        font-weight: bold;
    }

    .sort-buttons {
        flex-shrink: 0;
        padding-right: 15px;
        margin-right: 0 !important;
        border-right: 1px solid rgba(255,255,255,0.1);
        display: flex;
        gap: 10px;
    }
}

/* ============================================
   DASHBOARD İSTATİSTİKLERİ
   ============================================ */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02), 
                0 10px 30px rgba(0, 0, 0, 0.5);
    
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.stat-card-glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(26, 159, 255, 0.4);
    box-shadow: inset 0 0 20px rgba(26, 159, 255, 0.05), 
                0 15px 40px rgba(0, 0, 0, 0.6);
}

.stat-card-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.stat-card-glass:hover::before {
    opacity: 1;
    transform: scale(1);
}

.stat-sayi {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(26, 159, 255, 0.5);
    line-height: 1;
    margin-top: 10px;
}

.stat-baslik {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* İkonlar */
.stat-icon {
    font-size: 2rem;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.stat-card-glass:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(0, 0, 0, 0.5);
}
.stat-sayi.metin-modu {
    font-size: 1.6rem;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .stat-sayi.metin-modu {
        font-size: 1.4rem;
    }

    main h2 {
        font-size: 1.5rem !important;
    }
    
    main p {
        font-size: 0.9rem !important;
    }
    
    main > div > div[style*="margin-bottom: 40px"] {
        margin-bottom: 20px !important;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card-glass {
        padding: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        padding: 0;
    }

    .stat-sayi {
        font-size: 1.8rem;
        margin-top: 5px;
    }

    .stat-baslik {
        font-size: 0.75rem;
    }

    .stat-sayi.metin-modu {
        font-size: 1.1rem;
        min-height: 2rem;
    }

    .vitrin-baslik-grup {
        margin-bottom: 15px !important;
        align-items: center !important;
    }

    .vitrin-baslik {
        font-size: 1.2rem !important;
    }

    .vitrin-link {
        font-size: 0.8rem !important;
    }

    .arsiv-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }

    .kart-baslik {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .kart-icerik {
        padding: 10px;
        gap: 2px;
    }

    .kart-format, 
    .kart-alt-satir span {
        font-size: 0.7rem !important;
    }

    .durum-badge {
        font-size: 0.9rem; 
    }

    .puan-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
        top: 6px;
        right: 6px;
    }
}

.icon-blue { color: #33aaff; text-shadow: 0 0 15px rgba(51, 170, 255, 0.4); }
.icon-green { color: #69db7c; text-shadow: 0 0 15px rgba(105, 219, 124, 0.4); }
.icon-yellow { color: #ffd43b; text-shadow: 0 0 15px rgba(255, 212, 59, 0.4); }
.icon-red { color: #ff8787; text-shadow: 0 0 15px rgba(255, 135, 135, 0.4); }

/* --- Vitrin ve Diğer Alanlar --- */
.vitrin-baslik-grup {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.vitrin-baslik {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 600;
}

.vitrin-link {
    text-decoration: none;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.vitrin-link:hover {
    color: #fff;
    text-decoration: none;
}

.kart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    width: 100%;
}

/* ============================================
   EKLEME SAYFASI
   ============================================ */
.ekle-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    background-color: var(--card-bg) !important;
    border: 1px solid #16202d;
}

.poster-area {
    flex: 0 0 300px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.poster-preview {
    width: 100%;
    min-height: 450px;
    background-color: #16202d;
    border-radius: 12px;
    border: 2px dashed #2a475e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    overflow: hidden;
    transition: all 0.3s;
}

.poster-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poster-preview.dolu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.form-area {
    flex: 1;
}

.durum-switch {
    display: flex;
    background: #16202d;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.durum-switch input[type="radio"] {
    display: none;
}

.durum-option {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.durum-switch input[type="radio"]:checked + .durum-option {
    background-color: var(--card-bg);
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.durum-switch input[type="radio"]:checked + .durum-option .fa-circle-check {
    color: #51cf66;
}

.durum-switch input[type="radio"]:checked + .durum-option .fa-clock {
    color: #ffd43b;
}

.yildiz-wrapper {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: #2a475e;
    cursor: pointer;
    margin-top: 5px;
}

.yildiz-wrapper i {
    transition: transform 0.2s, color 0.2s;
}

.yildiz-wrapper i:hover {
    transform: scale(1.2);
}

.yildiz-wrapper i.dolu {
    color: #ffd43b;
}

.toggle-alan {
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 500px;
    opacity: 1;
}

.toggle-alan.gizli {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px){
    /* ============================
       EKLE VE DÜZENLE FORM MOBİL
       ============================ */

    .ekle-wrapper {
        flex-direction: column !important;
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box;
        gap: 25px !important;
    }

    .poster-area {
        width: 100% !important;
        flex: none !important;
        position: static !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }

    .poster-preview {
        min-height: 350px !important;
    }

    .form-area {
        width: 100% !important;
        padding: 0 !important;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea,
    .form-control {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    
    .durum-switch {
        flex-direction: row;
        gap: 5px !important;
    }
    
    .durum-option {
        font-size: 0.8rem !important;
        padding: 10px 5px !important;
    }
}

/* ============================================
   LANDING PAGE (TANITIM SAYFASI)
   ============================================ */
.landing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-badge {
    background-color: rgba(26, 159, 255, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--accent);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.browser-mockup {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    border: 1px solid #16202d;
    animation: float 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s;
}

.browser-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
}

.browser-header {
    background: #0e1621;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #16202d;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff6b6b;
}

.yellow {
    background: #ffd43b;
}

.green {
    background: #51cf66;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HERO SLIDER (KAYDIRMA / SLIDE EFEKTİ)
   ============================================ */

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
}

.hero-img {
    width: 100%;
    flex-shrink: 0;
    height: auto;
    display: block;
}

/* Noktalar (Dots) */
.slider-dots {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(26, 159, 255, 0.6);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0% {
        transform: translateY(0px) perspective(1000px) rotateY(-5deg);
    }
    50% {
        transform: translateY(-15px) perspective(1000px) rotateY(-5deg);
    }
    100% {
        transform: translateY(0px) perspective(1000px) rotateY(-5deg);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-box {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid #16202d;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(26, 159, 255, 0.2);
}

.feature-box h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    background: rgba(26, 159, 255, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {

    /* ============================
       LANDING PAGE
       ============================ */

    .landing-wrapper {
        padding: 20px 15px !important;
        gap: 40px !important;
    }

    .hero-split {
        gap: 25px !important; 
    }

    .hero-visual {
        width: 100%;
        margin-bottom: 10px;
    }

    .browser-mockup {
        width: 100%;
        transform: none !important;
        animation: none !important;
        margin: 0 auto;
    }

    .hero-text {
        text-align: center;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
        margin-bottom: 15px;
        display: inline-block;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
        padding: 0 10px;
        margin-bottom: 25px !important;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px !important;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;
        padding: 12px 10px !important;
        font-size: 0.9rem !important;
        white-space: nowrap;
    }

    .features-grid {
        gap: 15px !important;
    }

    .feature-box {
        padding: 17px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-box h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .feature-box p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .feat-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

/* ============================================
   AUTH SAYFALARI (GİRİŞ & KAYIT)
   ============================================ */
.auth-body {
    background-color: var(--bg-color);
    background-image: radial-gradient(#2a475e 1px, transparent 1px);
    background-size: 20px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: var(--card-bg);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid #16202d;
}

.auth-header {
    margin-bottom: 30px;
}

.auth-logo {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--text-main);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.auth-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #16202d;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-40%);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--accent);
}

.form-control.password-input {
    padding-right: 45px;
}

/* ============================================
   AUTH FORM DÜZENLEMELERİ
   ============================================ */

.form-group {
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1 rem;
    padding-left: 2px;
}

.form-group .form-control,
.form-group .password-wrapper {
    margin-bottom: 0 !important;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.3;
    padding-left: 2px;
}

.password-wrapper + small {
    margin-top: 6px;
}

/* ============================
   SÖZLEŞME CHECKBOX
   ============================ */

.sozlesme-wrapper {
    width: 100% !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
}

.sozlesme-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    cursor: pointer;
}

.sozlesme-checkbox {
    width: 20px !important;      
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;     
    flex: 0 0 20px !important;
    
    margin-right: 12px !important;
    margin-top: 3px !important;
    
    accent-color: var(--accent);
    box-shadow: none !important;
    outline: none !important;
}

.sozlesme-label span {
    flex: 1 !important;
    width: auto !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: var(--text-muted);
    white-space: normal !important;
    text-align: left !important;
}

.sozlesme-label a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px){

    /* ============================
       AUTH SAYFALARI (Mobil)
       ============================ */
    
    .auth-card {
        width: 90% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 30px 20px !important;
    }

    .auth-logo {
        font-size: 1.5rem !important;
    }

    .auth-desc {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
    }

    .auth-header {
        margin-bottom: 20px !important;
    }

    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
    }

    .form-control {
        font-size: 0.95rem !important;
        padding: 10px 12px !important;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.zarif-footer {
    background-color: var(--footer-bg);
    border-top: 1px solid #16202d;
    padding: 20px 0;
    margin-top: 60px;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: var(--text-main);
    font-size: 1.1rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-desc {
    line-height: 1.6;
    color: var(--text-main);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--text-main);
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-legal-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.6; 
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--accent);
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {

    /* ============================
       FOOTER (ALT BİLGİ)
       ============================ */

    .footer-brand {
        align-items: center;
    }
    
    .zarif-footer {
        padding: 40px 0 30px 0 !important;
        margin-top: 40px !important;
    }

    .footer-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .footer-brand {
        align-items: center !important;
        order: 1;
        width: 100%;
    }

    .brand-name {
        font-size: 1.4rem !important;
        margin-bottom: 5px !important;
        display: block;
    }

    .copyright {
        font-size: 0.8rem !important;
        opacity: 0.6;
        margin-bottom: 15px;
        display: block;
    }

    .footer-desc {
        order: 2;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        max-width: 300px;
        margin: 0 auto !important;
        color: var(--text-muted);
    }

    .footer-social {
        order: 3;
        justify-content: center;
        gap: 20px !important;
        width: 100%;
        margin-top: 10px;
    }

    .footer-social a {
        font-size: 1.3rem !important;
        background-color: rgba(255, 255, 255, 0.05);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .footer-social a:active {
        background-color: var(--accent);
        color: #fff;
    }

    .footer-legal-link {
        margin-top: 5px !important;
        font-size: 0.8rem !important;
        padding: 8px 15px;
        background: rgba(255,255,255,0.02);
        border-radius: 20px;
    }
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .browser-mockup {
        transform: none;
        animation: none;
    }

    .ekle-wrapper {
        flex-direction: column;
    }

    .poster-area {
        width: 100%;
        position: static;
    }

    .poster-preview {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .detay-wrapper {
        flex-direction: column;
    }

    .detay-gorsel {
        width: 100%;
        text-align: center;
    }

    .detay-gorsel img {
        max-width: 200px;
    }

    .arsiv-toolbar {
        flex-direction: column-reverse;
        border-radius: 12px;
        align-items: stretch;
    }

    .tab-container {
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .arama-input {
        width: 100% !important;
    }

    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand {
        align-items: center;
    }
}

/* ============================================
   SIRALAMA BUTONLARI
   ============================================ */
.sort-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}

.sort-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.sort-btn:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.sort-btn.aktif {
    color: var(--accent); /* Mavi renk */
    background-color: rgba(26, 159, 255, 0.1);
    border-color: rgba(26, 159, 255, 0.2);
}

.sort-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

/* ============================================
   AYARLAR SAYFASI
   ============================================ */
.ayarlar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki eşit sütun */
    gap: 30px;
}

.ayar-kutu {
    background: var(--card-bg);
    border: 1px solid #16202d;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.ayar-baslik {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ayar-baslik i {
    color: var(--accent);
}

@media (max-width: 900px) {
    .ayarlar-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   TEHLİKELİ BÖLGE 
   ==================================== */
.danger-zone {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    background: rgba(255, 107, 107, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.dz-text h3 {
    margin: 0 0 10px 0;
    color: #ff6b6b;
    font-size: 1.1rem;
}

.dz-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-sil-danger {
    background-color: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    width: auto;
}

.btn-sil-danger:hover {
    background-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .danger-zone {
        flex-direction: column;
        text-align: center;
    }
    .btn-sil-danger {
        width: 100%;
    }
}
