/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9333ea;
    --secondary: #3b82f6;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark-bg: #0a0a1a;
    --card-bg: #0f0f1f;
    --border: rgba(147, 51, 234, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ==================== ULTRA DARK LOGIN ==================== */
.ultra-dark-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05050a;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Particles Canvas */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dark-gradient-overlay {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Main Container */
.b2b-container {
    width: 100%;
    max-width: 1400px;
    height: 95vh;
    max-height: 900px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(59, 130, 246, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* ==================== BRAND PANEL ==================== */
.brand-panel {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.brand-content {
    position: relative;
    z-index: 1;
}

/* Company Logo */
.company-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.logo-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
}

/* Brand Features */
.brand-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: #3b82f6;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.feature-text p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

/* Brand Stats */
.brand-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    margin: 0 0 4px 0;
}

.stat-item p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Brand Footer */
.brand-footer {
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ==================== LOGIN PANEL ==================== */
.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: rgba(15, 23, 42, 0.4);
}

.login-wrapper {
    width: 100%;
    max-width: 440px;
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.login-header p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
}

/* B2B Form */
.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-b2b {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-b2b label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group-b2b label svg {
    color: #3b82f6;
}

.form-group-b2b input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group-b2b input::placeholder {
    color: #64748b;
}

.form-group-b2b input:focus {
    outline: none;
    background: rgba(30, 41, 59, 0.8);
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -8px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: #94a3b8;
    cursor: pointer;
}

.forgot-link {
    font-size: 14px;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Error Message */
.error-message-b2b {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 14px;
}

.error-message-b2b svg {
    flex-shrink: 0;
    color: #ef4444;
}

/* Login Button */
.btn-login-b2b {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    margin-top: 8px;
}

.btn-login-b2b:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.btn-login-b2b:active {
    transform: translateY(0);
}

.btn-login-b2b:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}

.badge-item svg {
    color: #3b82f6;
}

/* Help Text */
.help-text {
    text-align: center;
    margin-top: 24px;
}

.help-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.help-text a {
    color: #3b82f6;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

/* Shake Animation */
.shake {
    animation: shakeB2B 0.5s;
}

@keyframes shakeB2B {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ==================== ULTRA DARK LOGIN - NEW ==================== */

/* Container */
.ultra-login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    overflow-y: auto;
    padding: 0 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 51, 234, 0.3) transparent;
}

/* Logo tam ortada */
.ultra-brand {
    width: 100%;
    text-align: center;
}

/* İçerik wrapper - Sure ve Login yan yana */
.ultra-content-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

/* Desktop: 2 sütun layout */
@media (min-width: 900px) {
    .surah-card-login {
        flex: 1;
        max-width: 460px;
    }
    
    .ultra-login-card {
        flex: 1;
        max-width: 420px;
    }
}

/* Tablet ve mobil: üst üste */
@media (max-width: 899px) {
    .ultra-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .surah-card-login,
    .ultra-login-card {
        width: 100%;
        max-width: 460px;
    }
}

.ultra-login-container::-webkit-scrollbar {
    width: 6px;
}

.ultra-login-container::-webkit-scrollbar-track {
    background: transparent;
}

.ultra-login-container::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.3);
    border-radius: 3px;
}

.ultra-login-container::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 51, 234, 0.5);
}

/* Brand Section */
.ultra-brand {
    text-align: center;
    margin-bottom: 20px;
}

.ultra-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: logo-pulse 3s ease-in-out infinite;
}

.ring-2 {
    inset: 10px;
    border-color: rgba(59, 130, 246, 0.3);
    animation-delay: 1s;
}

.ring-3 {
    inset: 20px;
    border-color: rgba(16, 185, 129, 0.3);
    animation-delay: 2s;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.logo-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.6);
    animation: logo-rotate 10s linear infinite;
}

@keyframes logo-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-center svg {
    width: 32px;
    height: 32px;
    color: white;
}

.ultra-title {
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gradient-text {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea, #3b82f6, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.gradient-text-alt {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ultra-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Surah Card - Login */
.surah-card-login {
    width: 100%;
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.surah-header-login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.surah-header-login h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-change-surah {
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-change-surah:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: #9333ea;
    transform: translateY(-2px);
}

.surah-content {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
    transition: opacity 0.3s;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 51, 234, 0.5) transparent;
}

.surah-content::-webkit-scrollbar {
    width: 6px;
}

.surah-content::-webkit-scrollbar-track {
    background: transparent;
}

.surah-content::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.5);
    border-radius: 3px;
}

.verse-login {
    margin: 0 0 8px 0;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #d1d5db;
    background: rgba(147, 51, 234, 0.05);
    border-left: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 4px;
    transition: all 0.3s;
}

.verse-login:hover {
    background: rgba(147, 51, 234, 0.1);
    border-left-color: #9333ea;
    transform: translateX(4px);
}

.verse-login.highlight {
    background: rgba(147, 51, 234, 0.15);
    border-left-color: #9333ea;
    color: #ffffff;
    font-weight: 500;
}

/* Login Card */
.ultra-login-card {
    width: 100%;
    background: rgba(15, 15, 31, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 80px rgba(147, 51, 234, 0.05);
    position: relative;
    overflow: hidden;
    align-self: stretch;
}

.card-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.ultra-login-card:hover .card-glow {
    opacity: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.card-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.card-header p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Form */
.ultra-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ultra-input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: color 0.3s;
    z-index: 2;
}

.ultra-input-group.focused .input-icon {
    color: #9333ea;
}

.ultra-input-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(15, 15, 31, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
}

.ultra-input-group input::placeholder {
    color: #6b7280;
}

.ultra-input-group input:focus {
    border-color: #9333ea;
    background: rgba(15, 15, 31, 0.8);
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.ultra-input-group.focused .input-line {
    transform: scaleX(1);
}

/* Options */
.ultra-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -8px 0;
}

.ultra-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.ultra-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #9333ea;
}

.label-text {
    font-size: 14px;
    color: #9ca3af;
}

.ultra-forgot {
    font-size: 14px;
    color: #9333ea;
    text-decoration: none;
    transition: color 0.3s;
}

.ultra-forgot:hover {
    color: #a855f7;
}

/* Error Message */
.ultra-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 14px;
    animation: slideDown 0.3s;
}

.ultra-error svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.ultra-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.ultra-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.4);
}

.ultra-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.btn-loading svg {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { transform: translateX(100%); }
}

.shake-error {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Security Badges */
.ultra-security {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
}

.security-badge svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* İnşirah Suresi */
.surah-container {
    width: 100%;
    max-height: 320px;
    background: rgba(15, 15, 31, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin: 12px 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 51, 234, 0.5) transparent;
}

.surah-container::-webkit-scrollbar {
    width: 6px;
}

.surah-container::-webkit-scrollbar-track {
    background: transparent;
}

.surah-container::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.5);
    border-radius: 3px;
}

.surah-container::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 51, 234, 0.7);
}

.surah-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.surah-header svg {
    width: 24px;
    height: 24px;
    color: #9333ea;
}

.surah-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.surah-verses {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.verse {
    margin: 0;
    padding: 6px 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #d1d5db;
    background: rgba(147, 51, 234, 0.05);
    border-left: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 4px;
    transition: all 0.3s;
}

.verse:hover {
    background: rgba(147, 51, 234, 0.1);
    border-left-color: #9333ea;
    transform: translateX(4px);
}

.verse.highlight {
    background: rgba(147, 51, 234, 0.15);
    border-left-color: #9333ea;
    color: #ffffff;
    font-weight: 500;
}

/* İnşirah Suresi - Dashboard */
.surah-container-dashboard {
    background: rgba(15, 15, 31, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 16px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 51, 234, 0.5) transparent;
}

.surah-container-dashboard::-webkit-scrollbar {
    width: 6px;
}

.surah-container-dashboard::-webkit-scrollbar-track {
    background: transparent;
}

.surah-container-dashboard::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.5);
    border-radius: 3px;
}

.surah-container-dashboard::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 51, 234, 0.7);
}

.surah-container-dashboard .verse {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.ultra-footer {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

.ultra-footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .ultra-dark-login {
        padding: 20px 16px;
    }
    
    .ultra-login-container {
        padding: 0 12px;
        gap: 20px;
    }
    
    .ultra-content-wrapper {
        gap: 20px;
    }
    
    .ultra-login-card {
        padding: 28px 20px;
    }
    
    .surah-card-login {
        padding: 20px 16px;
    }
    
    .surah-header-login {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .btn-change-surah {
        width: 100%;
        text-align: center;
    }
    
    .ultra-title {
        font-size: 32px;
    }
    
    .gradient-text {
        font-size: 28px;
    }
    
    .gradient-text-alt {
        font-size: 20px;
    }
    
    .ultra-logo {
        width: 100px;
        height: 100px;
    }
    
    .surah-container {
        padding: 16px;
    }
    
    .verse {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .verse-login {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ==================== HACKER GİRİŞ SAYFASI (ESKİ) ==================== */
.hacker-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.hacker-login::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        repeating-linear-gradient(0deg, rgba(0, 255, 65, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 255, 65, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(0, 255, 65, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 255, 65, 0.03) 3px);
    pointer-events: none;
    z-index: 1;
}

/* Matrix Canvas */
.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
}

/* Scanline Effect */
.scanline {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 65, 0.05) 50%,
        transparent 100%
    );
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Grid Background */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ==================== TERMINAL CONTAINER ==================== */
.hacker-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(0, 20, 0, 0.85);
    border: 2px solid #00ff41;
    border-radius: 8px;
    box-shadow: 
        0 0 40px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.05);
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 300px;
    backdrop-filter: blur(10px);
}

/* Terminal Header */
.terminal-header {
    grid-column: 1 / -1;
    background: rgba(0, 50, 0, 0.8);
    border-bottom: 1px solid #00ff41;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ff5f56;
    box-shadow: 0 0 10px #ff5f56;
}

.control-dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px #ffbd2e;
}

.control-dot.green {
    background: #27c93f;
    box-shadow: 0 0 10px #27c93f;
}

.terminal-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.terminal-path {
    color: #00ff41;
    font-size: 13px;
    font-weight: 600;
}

.terminal-status {
    color: #10b981;
    font-size: 11px;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    border-radius: 4px;
}

.terminal-time {
    color: #00ff41;
    font-size: 13px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* Terminal Body */
.terminal-body {
    padding: 32px;
    color: #00ff41;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* System Info */
.system-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0;
    animation: fadeInLine 0.3s forwards;
}

.info-line:nth-child(1) { animation-delay: 0.1s; }
.info-line:nth-child(2) { animation-delay: 0.3s; }
.info-line:nth-child(3) { animation-delay: 0.5s; }
.info-line:nth-child(4) { animation-delay: 0.7s; }
.info-line:nth-child(5) { animation-delay: 0.9s; }

@keyframes fadeInLine {
    to {
        opacity: 1;
    }
}

.info-line.success {
    color: #10b981;
}

.prompt {
    color: #00ff41;
    font-weight: bold;
}

.command {
    color: #00d4ff;
}

/* Terminal Form */
.terminal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-hacker {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-hacker label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff41;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.label-prompt {
    color: #10b981;
    font-weight: bold;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 50, 0, 0.3);
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 12px 16px;
    transition: all 0.3s;
    position: relative;
}

.input-wrapper:focus-within {
    background: rgba(0, 50, 0, 0.5);
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.input-prompt {
    color: #00ff41;
    font-weight: bold;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: #00ff41;
    font-size: 14px;
    font-family: 'Consolas', 'Monaco', monospace;
    outline: none;
}

.input-wrapper input::placeholder {
    color: rgba(0, 255, 65, 0.3);
}

.input-cursor {
    width: 8px;
    height: 16px;
    background: #00ff41;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Error Message */
.error-terminal {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-left: 4px solid #ef4444;
    color: #ff8fa3;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}

.error-prompt {
    color: #ef4444;
    font-weight: bold;
    margin-right: 8px;
}

/* Access Button */
.btn-access {
    padding: 16px 32px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    border-radius: 4px;
    color: #00ff41;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Consolas', monospace;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-access::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-access:hover::before {
    width: 300px;
    height: 300px;
}

.btn-access:hover {
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

.btn-bracket {
    color: #10b981;
    font-size: 18px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Terminal Footer */
.terminal-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(0, 255, 65, 0.6);
}

.security-icon {
    margin-left: auto;
}

/* ==================== SIDE PANEL ==================== */
.side-panel {
    background: rgba(0, 30, 0, 0.9);
    border-left: 1px solid #00ff41;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-header {
    color: #00ff41;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(0, 255, 65, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #374151;
}

.status-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.panel-divider {
    height: 1px;
    background: rgba(0, 255, 65, 0.2);
}

/* Activity Log */
.activity-log {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.log-line {
    display: flex;
    gap: 12px;
    font-size: 10px;
    opacity: 0;
    animation: fadeInLog 0.5s forwards;
}

@keyframes fadeInLog {
    to { opacity: 1; }
}

.log-time {
    color: #6b7280;
    font-variant-numeric: tabular-nums;
}

.log-msg {
    color: rgba(0, 255, 65, 0.7);
}

/* System Metrics */
.system-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
}

.metric-label {
    color: #00ff41;
    width: 35px;
    font-weight: 600;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    transition: width 0.5s;
    position: relative;
}

.metric-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.metric-value {
    color: rgba(0, 255, 65, 0.7);
    width: 35px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Glitch Effect */
.glitch {
    animation: glitchAnim 0.3s;
}

@keyframes glitchAnim {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* ==================== ROBOTİK GİRİŞ SAYFASI (ESKİ) ==================== */
.login-page-robotic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a19 0%, #1a1a2e 50%, #16213e 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.login-page-robotic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 44, 191, 0.08) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Particles Background */
.particles-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(0, 212, 255, 1), transparent);
    border-radius: 50%;
    animation: particleFloat 5s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}

/* Network Canvas */
.network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
}

/* Main Wrapper */
.login-wrapper {
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    display: flex;
    position: relative;
    z-index: 10;
}

/* Robot Visual - Left Side */
.robot-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.robot-container {
    width: 400px;
    height: 400px;
    position: relative;
    animation: floatRobot 6s ease-in-out infinite;
}

@keyframes floatRobot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.robot-brain {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.brain-svg {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.brain-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawPath 3s ease-in-out forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.brain-circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCircle 2s ease-in-out forwards 1s;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

.neural-line {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawNeural 1.5s ease-in-out forwards 1.5s;
}

@keyframes drawNeural {
    to { stroke-dashoffset: 0; }
}

.active-node {
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% {
        r: 3;
        opacity: 0.6;
    }
    50% {
        r: 5;
        opacity: 1;
    }
}

.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: 0.4s; }
.node-3 { animation-delay: 0.8s; }
.node-4 { animation-delay: 1.2s; }
.node-5 { animation-delay: 1.6s; }

/* Circuit Lines */
.circuit-lines {
    position: absolute;
    inset: 0;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    height: 2px;
    width: 200px;
    opacity: 0.5;
    animation: circuitFlow 3s ease-in-out infinite;
}

@keyframes circuitFlow {
    0%, 100% {
        opacity: 0.2;
        transform: translateX(-20px);
    }
    50% {
        opacity: 0.8;
        transform: translateX(20px);
    }
}

.line-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.line-2 {
    top: 40%;
    right: 0;
    transform: rotate(180deg);
    animation-delay: 0.75s;
}

.line-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1.5s;
}

.line-4 {
    bottom: 15%;
    right: 10%;
    transform: rotate(180deg);
    animation-delay: 2.25s;
}

/* Scanner Effect */
.scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.1) 50%, 
        transparent 100%);
    animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(100%);
    }
}

/* Visual Info */
.visual-info {
    margin-top: 60px;
    text-align: center;
}

.visual-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.visual-info p {
    font-size: 16px;
    color: #8b8b9f;
}

/* Login Section - Right Side */
.login-section {
    flex: 0 0 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(10, 10, 25, 0.6);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.login-card-robotic {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 40, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card-robotic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-robotic {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.logo-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-robotic svg {
    width: 40px;
    height: 40px;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.card-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.card-header .subtitle {
    font-size: 14px;
    color: #8b8b9f;
}

/* Form Styles */
.login-form-robotic {
    margin-bottom: 24px;
}

.form-group-robotic {
    margin-bottom: 28px;
    position: relative;
}

.form-group-robotic label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #b0b0c0;
    font-size: 14px;
    font-weight: 500;
}

.form-group-robotic label svg {
    color: #00d4ff;
}

.form-group-robotic input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group-robotic input::placeholder {
    color: #5a5a6f;
}

.form-group-robotic input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(10, 10, 25, 0.7);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    transition: width 0.4s;
}

.form-group-robotic input:focus ~ .input-line {
    width: 100%;
}

.error-message-robotic {
    background: rgba(255, 59, 92, 0.1);
    border: 1px solid rgba(255, 59, 92, 0.3);
    color: #ff8fa3;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

/* Login Button */
.btn-login-robotic {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-login-robotic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7b2cbf, #00d4ff);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-login-robotic:hover::before {
    opacity: 1;
}

.btn-login-robotic:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.6);
}

.btn-text, .btn-arrow {
    position: relative;
    z-index: 1;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.login-footer-robotic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
}

.security-badge svg {
    width: 16px;
    height: 16px;
}

.login-footer-robotic p {
    color: #5a5a6f;
    font-size: 12px;
}

/* Shake Animation */
.shake {
    animation: shakeAnim 0.5s;
}

@keyframes shakeAnim {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-15px); }
    75% { transform: translateX(15px); }
}

/* ==================== MODERN DASHBOARD ==================== */
.modern-dashboard {
    background: #0a0a1a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: #e5e7eb;
}

.modern-dashboard::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== SIDEBAR MODERN ==================== */
.sidebar-modern {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #0f0f1f;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: all 0.3s;
}

.sidebar-header-modern {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.logo-modern h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.logo-modern p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.sidebar-nav-modern {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
}

.nav-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    position: relative;
}

.nav-icon-modern {
    font-size: 20px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item-modern:hover {
    background: rgba(147, 51, 234, 0.1);
    color: #ffffff;
}

.nav-item-modern.active {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.nav-item-modern.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 0 4px 4px 0;
}

.sidebar-footer-modern {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: var(--danger);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.btn-logout-modern:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* ==================== MAIN CONTENT ==================== */
.main-modern {
    margin-left: 260px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.topbar-modern {
    height: 70px;
    background: rgba(15, 15, 31, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.topbar-modern h1 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 24px;
}

.user-avatar-modern {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-badge span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.content-wrapper-modern {
    padding: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==================== STAT CARDS ==================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card-modern {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.card-purple::before { background: linear-gradient(90deg, #9333ea, #c026d3); }
.card-blue::before { background: linear-gradient(90deg, #3b82f6, #06b6d4); }
.card-green::before { background: linear-gradient(90deg, #10b981, #34d399); }
.card-orange::before { background: linear-gradient(90deg, #f59e0b, #f97316); }
.card-amber::before { background: linear-gradient(90deg, #eab308, #ca8a04); }

.stat-card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.2);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon-modern {
    font-size: 32px;
}

.card-header-flex h3 {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value-modern {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 8px 0;
}

.stat-label-modern {
    font-size: 13px;
    color: #6b7280;
}

/* ==================== CHARTS ==================== */
.charts-container-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.chart-card-modern {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.chart-card-modern h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.charts-full-modern {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

/* ==================== BEST DAY ==================== */
.best-day-modern {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(147, 51, 234, 0.6); }
}

.trophy-icon {
    font-size: 48px;
}

.best-day-modern h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.best-day-modern p {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0;
}

/* ==================== FORMS ==================== */
.form-card-modern {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.form-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    padding: 12px 16px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.calculation-preview-modern {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 20px;
}

.calc-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.calc-item span {
    font-size: 13px;
    color: #9ca3af;
}

.calc-item strong {
    font-size: 24px;
    color: #ffffff;
}

.btn-submit-modern {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.6);
}

/* ==================== TABLES ==================== */
.table-card-modern {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}

.table-controls-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.table-controls-modern input,
.table-controls-modern select {
    padding: 10px 16px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.table-responsive-modern {
    overflow-x: auto;
}

.table-responsive-modern table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive-modern th {
    padding: 12px 16px;
    background: rgba(147, 51, 234, 0.1);
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-responsive-modern td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    font-size: 14px;
}

.table-responsive-modern tr:hover {
    background: rgba(147, 51, 234, 0.05);
}

.no-data {
    text-align: center;
    color: #6b7280;
    padding: 40px !important;
}

/* ==================== REPORTS ==================== */
.year-selector-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.year-selector-modern label {
    font-weight: 600;
    color: #e5e7eb;
}

.year-selector-modern select {
    padding: 10px 16px;
    background: rgba(15, 15, 31, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

/* ==================== YENİ RAPORLAR TASARIMI ==================== */

/* Özet Kartlar */
.report-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.report-summary-card {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.report-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.report-summary-card:hover::before {
    opacity: 1;
}

.report-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.2);
}

.card-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5));
}

.card-content {
    flex: 1;
}

.card-label {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-detail {
    font-size: 14px;
    color: #6b7280;
}

/* Ana Grafik Container */
.chart-main-container {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.chart-main-container canvas {
    max-height: 280px !important;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.chart-period-select {
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.chart-period-select:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
}

/* İkincil Grafikler */
.charts-secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.chart-secondary-card {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
}

.chart-secondary-card canvas {
    max-height: 220px !important;
}

.chart-secondary-card:hover {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.2);
}

.chart-secondary-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

/* En İyi Performans */
.best-performance-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* Detaylı Raporlar */
.detailed-reports-container {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}

.reports-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.report-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    bottom: -2px;
}

.report-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.report-tab.active {
    color: #9333ea;
    border-bottom-color: #9333ea;
}

.report-tab-content {
    display: none;
}

.report-tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

.report-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.month-filter,
.year-filter {
    padding: 10px 16px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.month-filter:hover,
.year-filter:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
}

.btn-filter {
    padding: 10px 20px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.reports-table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.reports-table thead {
    background: rgba(147, 51, 234, 0.2);
}

.reports-table th {
    padding: 14px 16px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid rgba(147, 51, 234, 0.3);
}

.reports-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.reports-table tbody tr:hover {
    background: rgba(147, 51, 234, 0.1);
}

.reports-table td {
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
}

.reports-table .no-data {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Responsive Reports Table */
@media (max-width: 768px) {
    .reports-tabs {
        gap: 8px;
    }
    
    .report-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .report-filters {
        flex-direction: column;
    }
    
    .month-filter,
    .year-filter,
    .btn-filter {
        width: 100%;
    }
    
    .reports-table {
        font-size: 12px;
    }
    
    .reports-table th,
    .reports-table td {
        padding: 10px 6px;
    }
    
    /* Açıklama sütununu mobilde gizle */
    .reports-table th:last-child,
    .reports-table td:last-child {
        display: none;
    }
}

.best-performance-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.best-performance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.best-performance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

.best-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.6));
    position: relative;
    z-index: 1;
}

.best-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.best-label {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.best-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.best-content span {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Export Buttons */
.export-buttons-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-export-excel,
.btn-export-json {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-export-excel {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btn-export-json {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-export-excel:hover,
.btn-export-json:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.btn-export-reset {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.btn-export-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.45);
}

/* ==================== SETTINGS ==================== */
.settings-section-modern {
    background: rgba(15, 15, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.settings-section-modern h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Admin Form */
.admin-form-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-form-modern input,
.admin-form-modern select {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.admin-form-modern input:focus,
.admin-form-modern select:focus {
    outline: none;
    border-color: rgba(147, 51, 234, 0.6);
    background: rgba(10, 10, 25, 0.7);
}

.admin-form-modern select {
    cursor: pointer;
}

.admin-form-modern select option {
    background: #0a0a19;
    color: #ffffff;
    padding: 10px;
}

.btn-add-modern {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--success), #34d399);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.admins-list-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.admin-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.btn-delete-admin {
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: var(--danger);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-delete-admin:hover {
    background: rgba(239, 68, 68, 0.2);
}

.tx-actions-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.btn-edit-transaction {
    padding: 8px 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 6px;
    color: #93c5fd;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-edit-transaction:hover {
    background: rgba(59, 130, 246, 0.22);
}

.transaction-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.transaction-edit-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.transaction-edit-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    border-radius: 16px;
    background: rgba(15, 15, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.transaction-edit-title {
    margin: 0 0 20px 0;
    font-size: 1.15rem;
    color: #f1f5f9;
}

.transaction-edit-form .transaction-edit-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-cancel-edit {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 14px;
}

.btn-cancel-edit:hover {
    border-color: rgba(148, 163, 184, 0.6);
    color: #fff;
}

.light-theme .transaction-edit-dialog {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .transaction-edit-title {
    color: #0f172a;
}

.light-theme .btn-cancel-edit {
    color: #475569;
    border-color: rgba(71, 85, 105, 0.35);
}

/* Data Buttons */
.data-buttons-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.btn-data-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.btn-data-modern span {
    font-size: 32px;
}

.btn-data-modern strong {
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
}

.btn-data-modern small {
    display: block;
    font-size: 12px;
    color: #9ca3af;
}

.btn-data-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.2);
}

.btn-excel:hover { border-color: rgba(16, 185, 129, 0.5); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2); }
.btn-json:hover { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2); }
.btn-restore:hover { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2); }
.btn-delete:hover { border-color: rgba(239, 68, 68, 0.5); box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2); }

/* Theme Options */
.theme-options-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.theme-btn-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(10, 10, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-btn-modern span {
    font-size: 48px;
}

.theme-btn-modern strong {
    color: #ffffff;
    font-size: 15px;
}

.theme-btn-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.2);
}

/* System Info */
.system-info-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: rgba(10, 10, 25, 0.5);
    border-radius: 8px;
}

.info-row span {
    color: #9ca3af;
}

.info-row strong {
    color: #ffffff;
}

/* Light Theme */
.light-theme {
    background: #f3f4f6;
    color: #111827;
}

.light-theme .modern-dashboard::before { display: none; }
.light-theme .sidebar-modern { background: #ffffff; border-right-color: #e5e7eb; }
.light-theme .nav-item-modern { color: #6b7280; }
.light-theme .nav-item-modern:hover { background: #f3f4f6; color: #111827; }
.light-theme .topbar-modern { background: rgba(255, 255, 255, 0.9); border-bottom-color: #e5e7eb; }
.light-theme .stat-card-modern,
.light-theme .chart-card-modern,
.light-theme .form-card-modern,
.light-theme .table-card-modern,
.light-theme .report-card-modern,
.light-theme .stat-box-modern,
.light-theme .settings-section-modern {
    background: rgba(255, 255, 255, 0.9);
    border-color: #e5e7eb;
}

/* ==================== ÖDEMELER SECTION ==================== */
.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.payment-card {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(20, 20, 45, 0.6));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #3b82f6);
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
}

.payment-icon {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(147, 51, 234, 0.5));
}

.payment-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.payment-price {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0;
}

.payment-desc {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-payment {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.btn-payment:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(147, 51, 234, 0.6);
}

.payment-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.payment-info h3 {
    color: #3b82f6;
    font-size: 18px;
    margin-bottom: 16px;
}

.payment-info ul {
    list-style: none;
    padding: 0;
}

.payment-info ul li {
    color: #cbd5e1;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.payment-info ul li:last-child {
    border-bottom: none;
}

/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE - B2B LOGIN ==================== */
@media (max-width: 1200px) {
    .b2b-container {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }

    .brand-panel {
        display: none;
    }

    .login-panel {
        padding: 40px 20px;
    }
}

@media (max-width: 640px) {
    .login-wrapper {
        max-width: 100%;
    }

    .login-header h2 {
        font-size: 24px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==================== RESPONSIVE - HACKER LOGIN (ESKİ) ==================== */
@media (max-width: 968px) {
    .hacker-container {
        grid-template-columns: 1fr;
    }

    .side-panel {
        display: none;
    }
}

@media (max-width: 1024px) {
    .login-wrapper {
        flex-direction: column;
    }

    .robot-visual {
        flex: 0 0 auto;
        height: 50vh;
        padding: 40px 20px;
    }

    .robot-container {
        width: 300px;
        height: 300px;
    }

    .login-section {
        flex: 1;
        border-left: none;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .robot-visual {
        height: 40vh;
        padding: 20px;
    }

    .robot-container {
        width: 250px;
        height: 250px;
    }

    .visual-info {
        margin-top: 30px;
    }

    .visual-info h2 {
        font-size: 24px;
    }

    .login-section {
        padding: 20px;
    }

    .login-card-robotic {
        padding: 30px 24px;
    }

    .sidebar-modern {
        transform: translateX(-100%);
    }

    .sidebar-modern.open {
        transform: translateX(0);
    }

    .main-modern {
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .content-wrapper-modern {
        padding: 20px;
    }

    .cards-grid,
    .charts-container-modern {
        grid-template-columns: 1fr;
    }

    .topbar-modern {
        padding: 0 16px;
    }

    .topbar-modern h1 {
        font-size: 18px;
    }
}
