/* ==========================================================================
   MINERTOWN AFK WEB PANEL - ULTRA PREMIUM GAMER CSS DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-main: #060608; /* Derin Karbon Siyahı */
    --bg-card: rgba(14, 14, 18, 0.7);
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-active: rgba(249, 115, 22, 0.45);
    
    --text-primary: #fafaf9;
    --text-secondary: #d6d3d1;
    --text-muted: #78716c;
    
    --primary: #f97316; /* Neon Turuncu */
    --primary-glow: rgba(249, 115, 22, 0.4);
    --cyan: #ea580c; /* Koyu Lav Turuncusu */
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* İnce Neon Turuncu Kareli Grid Arka Plan Deseni */
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Arka Plan Küresel Işıma */
.glow-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0; left: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.2;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -20%;
    right: -20%;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    bottom: -20%;
    left: -20%;
}

/* Temel Layout */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100vh;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: rgba(14, 14, 18, 0.55);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mt-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: #ffffff;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.logo-text span {
    font-size: 10px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Ana Bölüm Grid */
.app-main {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: start;
}

/* Kart Yapısı */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.05);
}

.card-header {
    margin-bottom: 24px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtitle {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.text-orange {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    background: rgba(8, 8, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

input:focus {
    border-color: var(--primary);
    box-shadow: 
        0 0 15px rgba(249, 115, 22, 0.25),
        inset 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(8, 8, 10, 0.95);
}

/* Butonlar */
.btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
    background: linear-gradient(135deg, #f43f5e, #be123c);
    color: #ffffff;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
    width: auto;
}

/* Yan Panel Ekipman */
.side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sağ Panel / İçerik */
.content-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bot Kartları Grid */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.no-accounts-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-muted);
    background: rgba(18, 18, 22, 0.2);
}

/* Bot Kartı Tasarımı */
.account-card {
    background: linear-gradient(135deg, rgba(16, 16, 20, 0.8), rgba(10, 10, 14, 0.6));
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.account-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: transparent;
    transition: var(--transition);
}

.account-card.active-card {
    border-color: var(--border-glass-active);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15), inset 0 0 15px rgba(249, 115, 22, 0.04);
}

.account-card.active-card::after {
    background: var(--primary);
}

.account-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.account-card-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.25);
}

.account-card-name h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
}

.account-card-name span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Bağlantı Durum Noktaları */
.status-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.connected { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: var(--success); }
.status-badge.connecting { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: var(--warning); }
.status-badge.disconnected { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: var(--danger); }
.status-badge.paused { background: rgba(148, 163, 184, 0.1); border: 1px solid rgba(148, 163, 184, 0.2); color: #94a3b8; }

/* Barlar ve Değerler */
.stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.stat-row span {
    min-width: 18px;
}

.progress-container {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
}

.progress-bar.health { background: linear-gradient(to right, #ef4444, #f43f5e); }
.progress-bar.hunger { background: linear-gradient(to right, #f59e0b, #d97706); }
.progress-bar.inventory { background: linear-gradient(to right, var(--primary), var(--cyan)); }

.stat-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 32px;
    text-align: right;
}

/* Detaylar ve Konsol Bölümü */
.bot-details-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.3s ease-out;
}

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

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.selected-bot-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-bot-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.details-tabs {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 8px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Tab İçeriği Yönetimi */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Konsol Stilleri */
.console-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.spam-filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: pointer;
    margin-left: 10px;
}

.spam-filter-label input {
    cursor: pointer;
}

.console-logs {
    height: 320px;
    background: rgba(5, 5, 7, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 14px;
    padding: 18px;
    overflow-y: auto;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(249, 115, 22, 0.03);
}

/* Custom Scrollbar for Terminal logs */
.console-logs::-webkit-scrollbar {
    width: 6px;
}
.console-logs::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.console-logs::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.3);
    border-radius: 4px;
}
.console-logs::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 115, 22, 0.6);
}

.log-line {
    word-break: break-all;
    white-space: pre-wrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.log-line.info { color: #94a3b8; }
.log-line.success { color: #10b981; text-shadow: 0 0 8px rgba(16, 185, 129, 0.2); }
.log-line.warning { color: #f59e0b; text-shadow: 0 0 8px rgba(245, 158, 11, 0.2); }
.log-line.error { color: #ef4444; text-shadow: 0 0 8px rgba(239, 68, 68, 0.25); }
.log-line.chat { color: #e2e8f0; border-left: 2px solid var(--primary); padding-left: 6px; margin: 2px 0; }

.console-input-bar {
    display: flex;
    gap: 12px;
}

.console-input-bar input {
    flex-grow: 1;
    font-family: 'Consolas', 'Courier New', monospace;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.console-input-bar .btn {
    width: 50px;
    padding: 0;
}

/* Modül Kartları */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.module-card {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-icon {
    font-size: 20px;
}

.module-title h3 {
    font-size: 14px;
    font-weight: 700;
}

.module-title span {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
}

.module-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Switch (Slider) */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 8px var(--primary-glow);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* ==========================================================================
   RESPONSIVE LAYOUT (MOBİL & TABLET UYUMLULUK)
   ========================================================================== */

@media (max-width: 992px) {
    .app-main {
        grid-template-columns: 1fr; /* Sol paneli üste al */
    }
    
    .app-header {
        padding: 12px 18px;
    }
}

@media (max-width: 576px) {
    .app-container {
        padding: 10px;
    }
    
    .app-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .header-status {
        width: 100%;
        justify-content: center;
    }
    
    .card {
        padding: 16px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr; /* Kartlar alt alta */
    }
    
    .modules-grid {
        grid-template-columns: 1fr; /* Modüller alt alta */
    }
    
    .details-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .details-tabs {
        width: 100%;
    }
    
    .tab-btn {
        flex-grow: 1;
        justify-content: center;
    }
}

/* Login Screen Style */
.login-screen-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    z-index: 10;
    position: relative;
    background: radial-gradient(circle at center, #1a1a24 0%, #09090f 100%); /* E-spor tarzı şık koyu gradyan */
    overflow-x: hidden;
}

/* Siber oyun ızgara deseni (Grid Overlay) */
.login-screen-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.login-split-card {
    display: flex;
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Kartı belirginleştiren modern ince kenarlık */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Daha dolgun, premium bir gölge efekti */
    overflow: hidden;
    min-height: 520px;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

/* Sol Kısım: Rakun İllüstrasyonu & Branding */
.login-card-image-side {
    flex: 1.1;
    background: radial-gradient(circle at center, #1e1b4b 0%, #0f172a 100%); /* İndigo/Slate geçişli lüks gradyan */
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

/* Rakunun arkasında yavaşça parıldayıp büyüyen neon hare efekti */
.login-card-image-side::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.login-card-image-side .login-mascot-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Sağ Kısım: Form */
.login-card-form-side {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    color: #1f2937;
}

.login-welcome-section {
    margin-bottom: 25px;
}

.login-welcome-section h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.login-welcome-section p {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
}

.login-card-form-side label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

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

.login-card-form-side input[type="text"],
.login-card-form-side input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    background: #fbfbfb;
    border: 1px solid #e5e7eb; /* Daha modern ince kenarlık */
    border-radius: 10px;
    color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.login-card-form-side input[type="text"]:focus,
.login-card-form-side input[type="password"]:focus {
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12); /* Şık odaklanma halkası */
}

.btn-login-orange {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Çift renkli gradyanlı buton */
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.btn-login-orange:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
}

.login-footer a {
    color: #f97316;
    text-decoration: none;
    font-weight: 700;
}

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

/* Responsive (Mobil) Uyum */
@media (max-width: 768px) {
    .login-split-card {
        flex-direction: column;
        max-width: 400px;
        min-height: auto;
    }
    .login-card-image-side {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
    }
    .login-card-form-side {
        padding: 30px 24px;
    }
}

/* Süreyi Uzat Pulsing Butonu */
.btn-renew-pulse {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    animation: pulseRenew 1.6s infinite alternate cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease;
}

.btn-renew-pulse:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.7);
}

@keyframes pulseRenew {
    0% { transform: scale(0.96); box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
    100% { transform: scale(1.03); box-shadow: 0 0 20px rgba(239, 68, 68, 0.8); }
}
