/* Modern Kurumsal Dashboard Tasarımı - Uzman Mutemet */

:root {
    --bg-color: #f8fafc;
    --card-color: #ffffff;
    --sidebar-color: #1e293b;
    --accent-color: #4f46e5;
    --text-color: #1e293b;
    --hover-color: #475569;
    --active-color: #6366f1;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ==================== SIDEBAR ==================== */

.sidebar {
    width: 280px;
    background-color: var(--sidebar-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 35px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sidebar-logo-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 14px;
}

.sidebar-logo-initials {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.sidebar-logo-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.logo-uzman {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-mutemet {
    font-size: 11px;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.2;
}

.sidebar-nav {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.nav-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748b;
    padding: 14px 20px 6px;
    margin-top: 2px;
}

.sidebar-nav .nav-section-label:first-of-type {
    padding-top: 6px;
    margin-top: 0;
}

.nav-section-spacer {
    flex: 1;
    min-height: 0.75rem;
}

.nav-item-logout {
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo-mark {
    position: relative;
    z-index: 1;
    color: #ffffff;
    display: block;
}

.admin-shell-brand-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
}

.admin-shell-brand-sub {
    margin: 4px 0 0;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.04em;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 4px 0;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.nav-item:hover {
    background-color: #1e293b;
    color: #ffffff;
}

.nav-item.active {
    background-color: #6366f1;
    color: #ffffff;
    border-left-color: #6366f1;
    font-weight: 600;
}

.nav-item.active .nav-icon {
    color: inherit;
}

.nav-icon {
    font-size: 20px;
    width: 50px;
    text-align: center;
    margin-right: 8px;
    transition: color 0.2s ease;
}

.nav-item:not(.active) .nav-icon {
    color: #94a3b8;
}

.nav-item.active .nav-icon,
.nav-item:hover .nav-icon {
    color: inherit;
}

.nav-text {
    font-size: 14px;
    font-weight: 400;
}

.nav-item.active .nav-text {
    font-weight: 600;
}

/* Alt Menü Yapısı */
.nav-item-parent {
    position: relative;
}

.nav-item-toggle {
    cursor: pointer;
}

.nav-arrow {
    margin-left: auto;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-parent.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    margin-left: 50px;
    border-radius: 8px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.nav-item-parent.open .nav-submenu {
    max-height: 200px;
}

.nav-subitem {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
}

.nav-subitem:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-subitem.active {
    background-color: #6366f1;
    color: #ffffff;
    font-weight: 600;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.version-text {
    font-size: 11px;
    color: #94a3b8;
}

.sidebar-footer-ayar-wrap {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-footer-ayar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    transition: background 0.2s, color 0.2s;
}

.sidebar-footer-ayar-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.sidebar-footer-ayar-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* ==================== MAIN CONTENT ==================== */

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    min-height: 100vh;
}

/* VIP giriş — ortalanmış kart */
.vip-login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 60px);
    padding: 1rem 0 2rem;
}

.vip-login-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--card-color);
    border-radius: 16px;
    padding: 2rem 2.25rem 2.9rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
}

.vip-login-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    line-height: 1.35;
    margin-bottom: 1.75rem;
}

.vip-login-flash {
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    font-size: 0.9375rem;
}

.vip-login-flash.flash-error,
.vip-login-flash.flash-hata {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.vip-login-flash.flash-success,
.vip-login-flash.flash-basarili {
    background: #dcfce7;
    color: #14532d;
    border: 1px solid #86efac;
}

.vip-login-flash.flash-message,
.vip-login-flash:not(.flash-error):not(.flash-success):not(.flash-basarili) {
    background: #e0f2fe;
    color: #0c4a6e;
    border: 1px solid #bae6fd;
}

.vip-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.vip-login-label span {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
}

.vip-login-label input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vip-login-label input:focus {
    outline: none;
    border-color: var(--active-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.vip-login-submit {
    margin-top: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
}

/* Yönetici girişi: yalnızca dişli simgesinden açılır */
.vip-admin-reveal-btn {
    position: absolute;
    right: 0.75rem;
    bottom: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    opacity: 0.42;
    transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.vip-admin-reveal-btn:hover,
.vip-admin-reveal-btn:focus-visible {
    opacity: 1;
    color: #64748b;
    background: rgba(148, 163, 184, 0.12);
    outline: none;
}

.vip-admin-reveal-icon {
    display: block;
}

.vip-admin-panel {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.8125rem;
    color: #475569;
}

.vip-hidden-admin-form {
    margin-top: 0;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

/* ==================== CARDS ==================== */

.card {
    background: var(--card-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

/* ==================== FORMS ==================== */

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--text-color);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input.error {
    border-color: var(--error-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background-color: var(--hover-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #334155;
}

.btn-success {
    background-color: var(--success-color);
    color: #ffffff;
}

.btn-danger {
    background-color: var(--error-color);
    color: #ffffff;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* ==================== TABLES ==================== */

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--text-color);
    position: sticky;
    top: 0;
}

table tr:hover {
    background-color: #f8fafc;
}

table td.text-right {
    text-align: right;
}

/* ==================== TOAST NOTIFICATIONS ==================== */

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
    font-size: 14px;
}

.toast.success {
    background-color: var(--success-color);
    color: #ffffff;
}

.toast.error {
    background-color: var(--error-color);
    color: #ffffff;
}

.toast.info {
    background-color: var(--info-color);
    color: #ffffff;
}

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

/* ==================== KPI CARDS ==================== */

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

.kpi-card {
    background: var(--card-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.kpi-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.kpi-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

/* ==================== RESPONSIVE ==================== */

/* Mobil Sidebar Toggle Button */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background-color: var(--sidebar-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
    background-color: var(--hover-color);
}

/* Sidebar Overlay (Mobil) */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 60px 15px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-logo {
        flex-direction: column;
        gap: 16px;
    }
    
    .logo-text-container {
        text-align: center;
    }
    
    .title-main {
        font-size: 28px;
    }
    
    .title-sub {
        font-size: 22px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-initials {
        font-size: 24px;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 20px;
    }
    
    .card {
        padding: 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 60px 10px 15px;
    }
    
    .title-main {
        font-size: 24px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .welcome-domain {
        font-size: 12px;
    }
    
    .kpi-value {
        font-size: 22px;
    }
}

/* ==================== UTILITY CLASSES ==================== */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* ==================== SGK admin (/sgk) — Flask flaş + VIP tablo ==================== */

body.sgk-admin-shell {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.sgk-admin-shell .flash-wrapper {
    width: 100%;
}

.sgk-admin-shell .flash {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.sgk-admin-shell .flash.hata {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.sgk-admin-shell .flash.basarili {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.sgk-vip-sekmeler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.sgk-vip-sekme {
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    transition: background 0.2s, color 0.2s;
}

.sgk-vip-sekme:hover {
    background: #e2e8f0;
    color: var(--text-color);
}

.sgk-vip-sekme.aktif {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.sgk-vip-table-wrap {
    overflow-x: auto;
    margin-top: 8px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.sgk-vip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 720px;
}

.sgk-vip-table th,
.sgk-vip-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.sgk-vip-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.sgk-vip-table tbody tr:last-child td {
    border-bottom: none;
}

.sgk-vip-satir.durum-uyari {
    background: #fffbeb;
}

.sgk-vip-satir.durum-dolmus {
    background: #fef2f2;
}

.sgk-vip-satir.durum-iptal {
    background: #f8fafc;
}

.sgk-vip-modul {
    max-width: 220px;
    color: #475569;
    line-height: 1.45;
    word-break: break-word;
}

.sgk-vip-rozet {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.sgk-vip-rozet.uyari {
    background: #fef3c7;
    color: #92400e;
}

.sgk-vip-rozet.aktif {
    background: #d1fae5;
    color: #065f46;
}

.sgk-vip-rozet.dolmus {
    background: #fee2e2;
    color: #991b1b;
}

.sgk-vip-rozet.iptal {
    background: #e2e8f0;
    color: #475569;
}

.sgk-vip-islemler {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.sgk-vip-islem-satir {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.sgk-vip-inline-form {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.sgk-vip-inline-form input[type="password"],
.sgk-vip-inline-form input[type="text"],
.sgk-vip-inline-form select {
    width: auto;
    min-width: 0;
    max-width: 140px;
    padding: 6px 10px;
    font-size: 12px;
}

.sgk-vip-btn-sm {
    padding: 6px 12px !important;
    font-size: 12px !important;
}

.sgk-vip-sql-notice {
    font-size: 12px;
    color: #64748b;
    padding: 8px 10px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

/* Giriş modalı: eski tam genişlik tetikleyici (artık .sidebar-footer-ayar-btn) */
.nav-item.nav-item-vip-trigger {
    width: 100%;
    border: none;
    background: transparent;
    font: inherit;
    font-family: inherit;
    text-align: left;
    box-sizing: border-box;
}

.vip-giris-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10050;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.vip-giris-modal.is-open {
    display: flex;
}

.vip-giris-modal__panel {
    position: relative;
    width: 100%;
    max-width: 920px;
    max-height: min(92vh, 900px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem 1.75rem 2.25rem;
}

.vip-giris-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.vip-giris-modal__close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.vip-giris-modal__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.vip-giris-modal__logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 55%, #4338ca 100%);
    flex-shrink: 0;
}

.vip-giris-modal__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.vip-giris-modal__brand-line {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.vip-giris-modal__brand-url {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.35rem;
}

.vip-giris-modal__hint {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
    margin: 1rem 0 1.75rem;
}

.vip-giris-modal__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 840px) {
    .vip-giris-modal__cards {
        grid-template-columns: 1fr;
    }
}

.vip-giris-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.vip-giris-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.12);
}

.vip-giris-card__icon {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.vip-giris-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.vip-giris-card__desc {
    margin: 0 0 1.1rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.45;
    flex: 1;
}

.vip-giris-card__btn {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: none;
    background: #5550e6;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.vip-giris-card__btn:hover {
    background: #4844d4;
    color: #fff !important;
}

.vip-giris-card__btn:active {
    transform: scale(0.98);
}

