/* CSS Custom Properties (Variables) */
:root {
    /* Primary Colors */
    --color-primary: #00ff88;
    --color-primary-dark: #00cc66;
    --color-primary-light: #33ffaa;
    
    /* Primary RGBA Colors */
    --color-primary-rgba-10: rgba(0, 255, 136, 0.1);
    --color-primary-rgba-12: rgba(0, 255, 136, 0.12);
    --color-primary-rgba-20: rgba(0, 255, 136, 0.2);
    --color-primary-rgba-25: rgba(0, 255, 136, 0.25);
    --color-primary-rgba-30: rgba(0, 255, 136, 0.3);
    --color-primary-rgba-35: rgba(0, 255, 136, 0.35);
    --color-primary-rgba-40: rgba(0, 255, 136, 0.4);
    --color-primary-rgba-50: rgba(0, 255, 136, 0.5);
    --color-primary-rgba-60: rgba(0, 255, 136, 0.6);
    
    /* Error Colors */
    --color-error: #ff6666;
    --color-error-dark: #ff4444;
    
    /* Spacing */
    --spacing-xs: 3px;
    --spacing-sm: 6px;
    --spacing-md: 12px;
    --spacing-lg: 18px;
    --spacing-xl: 24px;
    
    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Z-index Scale */
    --z-index-base: 1;
    --z-index-dropdown: 100;
    --z-index-sticky: 200;
    --z-index-fixed: 300;
    --z-index-modal-backdrop: 400;
    --z-index-modal: 500;
    --z-index-popover: 600;
    --z-index-tooltip: 700;
    --z-index-max: 1000;
}

/* Reset and Base Styles - Spesifik elementler (universal selector yerine) */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, 
form, input, button, select, textarea, table, thead, tbody, tr, th, td,
article, aside, footer, header, nav, section, main, canvas {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Particle Animation Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* Mobil için particle sayısını azalt */
@media (max-width: 768px) {
    #particle-canvas {
        /* Mobilde daha az particle için CSS değişkeni */
        --particle-count: 100;
    }
}

@media (max-width: 480px) {
    #particle-canvas {
        --particle-count: 60;
    }
}

body {
    font-family: 'JetBrains Mono', monospace;
    color: #00ff88;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Temaya uygun global scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.35);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.35);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.55);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    margin-bottom: 9px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 8px 0;
    border-bottom: 1px solid #00ff88;
    margin-bottom: 12px;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #00cc66;
    letter-spacing: 1.5px;
    margin-top: 1px;
    line-height: 1;
}

.auth-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.header-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.6);
    border-radius: 999px;
    color: #00ff88;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    text-transform: uppercase;
}

.header-link-btn svg {
    flex-shrink: 0;
    stroke: currentColor;
    width: 16px;
    height: 16px;
}

.header-link-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
    transform: translateY(-1px);
}

.header-link-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(0, 255, 136, 0.6);
    color: #f4fff9;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 4px;
}

.user-type {
    background: #00ff88;
    color: #000;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-right: 6px;
}

.logout-btn {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 3px 6px;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    height: 24px;
    line-height: 1;
}

.logout-btn:hover {
    background: #ff6666;
    box-shadow: 0 0 10px #ff4444;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 36px;
    min-width: 180px;
}

.google-signin-btn:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.google-signin-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.google-signin-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none; /* SVG'ye tıklama event'lerini engelle */
}

#google-signin-btn-container {
    display: none;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
    margin-bottom: 20px;
}

/* Statistics Section */
.statistics-section {
    padding: 0;
    margin-bottom: 0;
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 204, 102, 0.06) 100%);
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 4px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border 0.2s ease, opacity 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
    border-color: #00cc66;
}

.stat-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 6px #00ff88;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.6rem;
    color: #00cc66;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Form Section */

.form-section {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 6px;
    padding: 14px 12px;
    backdrop-filter: blur(10px);
    will-change: backdrop-filter;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border 0.2s ease, opacity 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.form-section.compact {
    padding: 12px;
    margin-bottom: 16px;
}

.form-section.compact .form-title {
    display: none;
}

.form-section.compact .form-description {
    display: none;
}

.form-container {
    width: 100%;
}

.form-title {
    font-size: 1.2rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 6px;
    text-shadow: 0 0 6px #00ff88;
    font-weight: 600;
}

.form-subtitle {
    color: #00cc66;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.form-description {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    will-change: backdrop-filter;
}

.form-description p {
    color: #00cc66;
    text-align: center;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.cv-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 50px;
    justify-content: flex-start;
}

.form-group label {
    color: #00ff88;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
}

.form-group input,
.form-group select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.6);
    color: #00ff88;
    padding: 5px 7px;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border 0.2s ease, opacity 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 28px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00cc66;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder {
    color: #666;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 5px 8px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    min-height: 28px;
    height: 28px;
}

.file-label:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: #00cc66;
}

.file-text {
    font-size: 0.7rem;
}

.file-icon {
    font-size: 0.8rem;
}

/* Form Actions */
.form-actions {
    margin-top: 14px;
}

.modal-action-group {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-action-btn {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #00190f;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    min-width: 120px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-action-btn:hover {
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.4);
    transform: translateY(-1px);
}

.modal-action-btn.secondary {
    background: rgba(0, 0, 0, 0.4);
    color: #f4fff9;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-action-btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.modal-action-btn.full-width {
    width: 100%;
}

.submit-btn,
.premium-btn {
    width: 100%;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #00cc66, #00ff88);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.premium-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
}

.toggle-console-btn {
    margin-top: 10px;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    color: #00ff88;
    border: 1px dashed rgba(0, 255, 136, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.toggle-console-btn:hover {
    background: rgba(0, 255, 136, 0.15);
    border-style: solid;
}

@media (min-width: 769px) {
    .toggle-console-btn.toggle-console-btn {
        display: none;
    }
}

.premium-btn:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.btn-icon {
    font-size: 1rem;
}

/* Premium Upgrade Section */
.premium-upgrade-section {
    margin-top: 14px;
}

.premium-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(247, 147, 30, 0.25) 100%);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.premium-banner:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.premium-icon {
    font-size: 0;
    color: #FFD700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.premium-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.premium-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.premium-content h3 {
    color: #ff6b35;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    font-weight: 600;
    line-height: 1.3;
}

.premium-content p {
    color: #ffaa00;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.premium-btn-small {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.premium-btn-small:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.premium-btn-small:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.premium-btn-small svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Console Section */
.console-section {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ff88;
    border-radius: 6px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    will-change: backdrop-filter;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
}

.console-section.console-section.is-collapsed {
    display: none;
}

/* Form Fields Wrapper - Collapsible on mobile */
.form-fields-wrapper {
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.form-fields-wrapper.collapsed {
    overflow: hidden;
}

.form-fields-wrapper.collapsed .form-group {
    display: none;
}

.form-fields-wrapper.collapsed .form-group:first-child {
    display: block;
    cursor: pointer;
    position: relative;
}

.form-fields-wrapper.collapsed .form-group:first-child::after {
    /* Emojili yazı kaldırıldı - daha profesyonel görünüm için (Sorun #26) */
    content: 'Formu Açmak İçin Tıklayın';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff88;
    font-size: 0.75rem;
    pointer-events: none;
    font-weight: 500;
}

@media (max-width: 480px) {
    .console-section.hidden {
        display: none;
    }
    
    /* Mobile: Form fields collapsed after submission */
    .form-fields-wrapper.collapsed {
        max-height: 80px;
        border: 1px solid #00ff88;
        border-radius: 8px;
        padding: 10px;
        margin-bottom: 15px;
        background: rgba(0, 255, 136, 0.05);
    }
}

.console-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.console-header {
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid #00ff88;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-title {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

.console-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.console-close-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
    padding: 5px 10px;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.console-close-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

@media (min-width: 769px) {
    .console-close-btn {
        display: none !important;
    }
}

.console-status {
    background: #00ff88;
    color: #000;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

.console-content {
    flex: 1;
    padding: 12px 12px;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.console-line {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.timestamp {
    color: #666;
    font-size: 0.85rem;
    min-width: 100px;
    font-weight: 500;
    flex-shrink: 0;
}

.log-text {
    color: #00ff88;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.log-success {
    color: #00ff88;
}

.log-error {
    color: #ff4444;
}

.log-warning {
    color: #ffaa00;
}

/* Footer */
.footer {
    border-top: 1px solid #00ff88;
    padding: 12px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-link {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00cc66;
}

.footer-separator {
    color: #00ff88;
    opacity: 0.6;
    margin: 0 5px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
    backdrop-filter: blur(5px);
    will-change: backdrop-filter;
}

.loading-overlay:not(.hidden) {
    display: flex;
}

.loading-content {
    text-align: center;
    color: #00ff88;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-top: 3px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    will-change: transform;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Typing Animation */
.typing {
    overflow: hidden;
    border-right: 2px solid #00ff88;
    white-space: nowrap;
    animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
    will-change: width, border-color;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00ff88; }
}

/* Companies Modal */
.companies-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
    backdrop-filter: blur(6px);
    will-change: backdrop-filter;
    padding: 20px;
}

.companies-modal:not(.hidden) {
    display: flex;
}

.companies-modal-content {
    width: min(600px, 100%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 16px;
}

.companies-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.companies-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #00ff88;
}

.companies-count {
    margin: 4px 0 0 0;
    color: rgba(244, 255, 249, 0.7);
    font-size: 0.9rem;
}

.companies-modal-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.companies-modal-close:hover {
    color: #ff5f5f;
}

.companies-modal-body {
    max-height: 60vh;
    overflow: hidden;
    user-select: none;
}

.companies-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(244, 255, 249, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.loading-spinner.small {
    width: 28px;
    height: 28px;
    border-width: 2px;
}

.companies-list {
    max-height: 50vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 6px;
}

.companies-list::-webkit-scrollbar {
    width: 6px;
}

.companies-list::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.3);
    border-radius: 10px;
}

.company-pill {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    color: rgba(244, 255, 249, 0.85);
    font-size: 0.78rem;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    flex: 0 0 auto;
    text-align: left;
    user-select: none;
    pointer-events: none;
}

.companies-empty {
    color: rgba(244, 255, 249, 0.8);
    text-align: center;
    width: 100%;
    margin: 20px 0;
    font-size: 0.95rem;
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
    backdrop-filter: blur(5px);
    will-change: backdrop-filter;
}

.contact-modal:not(.hidden) {
    display: flex;
}

.contact-modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #00ff88;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    backdrop-filter: blur(15px);
    will-change: backdrop-filter;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

/* Modal scrollları */
.contact-modal-content::-webkit-scrollbar,
.blacklist-modal-content::-webkit-scrollbar,
.tickets-modal-content::-webkit-scrollbar,
.user-panel-modal-content::-webkit-scrollbar,
.add-company-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}
.contact-modal-content::-webkit-scrollbar-thumb,
.blacklist-modal-content::-webkit-scrollbar-thumb,
.tickets-modal-content::-webkit-scrollbar-thumb,
.user-panel-modal-content::-webkit-scrollbar-thumb,
.add-company-modal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.45);
    border-radius: 6px;
}

.contact-modal-header {
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h3 {
    color: #00ff88;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-modal-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-close:hover {
    color: #ff4444;
}

.contact-form {
    padding: 14px;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form .form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

.cancel-btn {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(255, 68, 68, 0.2);
}

/* Tickets Modal */
.tickets-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
    backdrop-filter: blur(5px);
    will-change: backdrop-filter;
}

.tickets-modal:not(.hidden) {
    display: flex;
}

.tickets-modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff88;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    will-change: backdrop-filter;
}

.tickets-modal-header {
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid #00ff88;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tickets-modal-header h3 {
    color: #00ff88;
    margin: 0;
    font-size: 1.3rem;
}

.tickets-modal-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tickets-modal-close:hover {
    color: #ff4444;
}

.tickets-content {
    padding: 20px;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 15px;
    backdrop-filter: blur(5px);
    will-change: backdrop-filter;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticket-subject {
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
}

.ticket-status {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ticket-status.open {
    background: #00ff88;
    color: #000;
}

.ticket-status.closed {
    background: #ff4444;
    color: #fff;
}

.ticket-message {
    color: #00cc66;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ticket-replies {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.reply-item {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 8px;
}

.reply-message {
    color: #00ff88;
    margin-bottom: 5px;
}

.reply-meta {
    color: #00cc66;
    font-size: 0.8rem;
}

.ticket-reply-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.ticket-reply-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 10px;
    border-radius: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px;
}

.ticket-reply-form button {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ticket-reply-form button:hover {
    background: linear-gradient(45deg, #00cc66, #00ff88);
}

/* Utility Classes */
.hidden {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

/* Console section: Hide by default on mobile, show on desktop */
@media (min-width: 481px) {
    .console-section.hidden {
        display: block !important;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .statistics-section,
    .console-section {
        order: 2;
    }
    
    .console-close-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0 12px 0;
    }
    
    .auth-section {
        align-items: center;
        width: 100%;
    }
    
    .header-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-link-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
        min-height: 36px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .statistics-section {
        padding: 15px 0 0 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .stat-container {
        gap: 8px;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    
    .stat-item {
        padding: 10px 8px;
        gap: 6px;
        min-height: 65px;
        flex-direction: row;
        align-items: center;
        border-radius: 6px;
    }
    
    .stat-icon {
        font-size: 1.4rem;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .stat-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .stat-number {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .form-section {
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cv-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .form-fields-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .console-section {
        padding: 0;
        margin-top: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .premium-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: left;
        padding: 18px;
    }
    
    .premium-icon {
        justify-content: flex-start;
        margin-bottom: 4px;
    }
    
    .premium-icon svg {
        width: 48px !important;
        height: 48px !important;
    }
    
    .premium-content {
        flex: 1;
        min-width: 0; /* Text overflow için */
        margin: 0;
        padding: 0;
    }
    
    .premium-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
        white-space: normal;
    }
    
    .premium-content p {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.4;
    }
    
    .premium-btn-small {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.9rem;
        white-space: normal;
        width: 100%;
    }
    
    .file-status {
        padding: 6px 10px;
        margin-top: 6px;
    }
    
    .file-name {
        font-size: 0.85rem;
    }
    
    .file-size {
        font-size: 0.75rem;
    }
    
    .file-remove {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .companies-modal-content {
        padding: 20px;
    }
    
    .company-pill {
        flex: 1 1 100%;
    }
    
    .cv-form {
        padding: 15px;
        margin: 10px 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* iOS zoom önleme */
        padding: 14px 12px;
        min-height: 48px; /* Touch target için */
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .file-label {
        min-height: 48px;
        padding: 12px;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .company-item {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .submit-btn,
    .cancel-btn,
    .premium-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3);
        border-radius: 6px;
    }
    
    .modal-action-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .modal-action-btn {
        width: 100%;
        min-height: 48px;
        padding: 14px;
        font-size: 16px;
        touch-action: manipulation;
        border-radius: 6px;
    }
    
    .blacklist-form .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .blacklist-form .submit-btn,
    .blacklist-form .cancel-btn {
        width: 100%;
        flex: none;
    }
    
    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }
    
    .contact-modal-content,
    .blacklist-modal-content,
    .tickets-modal-content,
    .user-panel-modal-content {
        margin: 5px;
        max-width: calc(100% - 10px);
        max-height: calc(100vh - 10px);
        border-radius: 8px;
    }
    
    .contact-modal-header,
    .blacklist-modal-header,
    .tickets-modal-header,
    .user-panel-modal-header {
        padding: 15px;
    }
    
    .contact-modal-header h3,
    .blacklist-modal-header h3,
    .tickets-modal-header h3,
    .user-panel-modal-header h3 {
        font-size: 1rem;
    }
    
    .contact-form,
    .blacklist-content,
    .tickets-content,
    .user-panel-content {
        padding: 15px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .contact-form .form-group {
        margin-bottom: 10px;
    }
    
    .blacklist-content {
        padding: 15px;
    }
    
    .blacklist-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .tickets-filters {
        margin-bottom: 15px;
    }
    
    .tickets-filters select {
        width: 100%;
        padding: 8px;
        font-size: 14px;
    }
    
    .ticket-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .ticket-replies {
        padding: 10px;
    }
    
    .reply-form {
        padding: 10px;
    }
    
    .reply-form textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .user-panel-content {
        padding: 15px;
    }
    
    .user-info {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .applications-list {
        padding: 10px;
    }
    
    .application-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .application-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .application-status {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .application-details {
        font-size: 0.8rem;
    }
    
    .application-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
    
    .application-actions button {
        width: 100%;
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 10px 0;
    }
    
    .footer-content {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-separator {
        display: inline;
        margin: 0 8px;
    }
}


@media (max-width: 480px) {
    /* Enhanced mobile styles - See mobile-enhancements.css for full implementation */
    .container {
        padding: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .header {
        margin-bottom: 16px;
    }
    
    .header-top {
        padding: 14px 0 12px 0;
        gap: 14px;
        border-bottom-width: 2px;
        border-bottom-color: rgba(0, 255, 136, 0.6);
    }
    
    .logo {
        gap: 10px;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
        text-shadow: 0 0 12px #00ff88;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
        filter: drop-shadow(0 0 12px #00ff88);
    }
    
    .auth-section {
        align-items: center;
        width: 100%;
        gap: 10px;
    }
    
    .google-signin-btn {
        width: 100%;
        min-height: 32px;
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        gap: 6px;
    }
    
    .google-signin-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .header-links {
        display: none !important;
    }
    
    .header-link-btn {
        font-size: 0.75rem;
        padding: 10px 16px;
        min-height: 44px;
        border-radius: 8px;
        border-width: 1.5px;
        box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    }
    
    .statistics-section {
        padding: 0;
        margin-top: 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .stat-container {
        gap: 4px;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    
    .stat-item {
        padding: 6px 4px;
        gap: 4px;
        min-height: 50px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 4px;
        border-width: 1px;
        background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 204, 102, 0.06) 100%);
        box-shadow: 0 1px 4px rgba(0, 255, 136, 0.1);
    }
    
    .stat-icon {
        font-size: 1rem;
        width: 20px;
        height: 20px;
        margin-bottom: 3px;
        filter: drop-shadow(0 0 6px #00ff88);
    }
    
    .stat-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .stat-number {
        font-size: 1rem;
        line-height: 1.1;
        word-break: break-word;
        text-shadow: 0 0 8px #00ff88;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.55rem;
        line-height: 1.2;
        word-break: break-word;
        text-align: center;
        color: rgba(0, 204, 102, 0.9);
        letter-spacing: 0.3px;
        margin-top: 0;
    }
    
    .form-section {
        padding: 12px 10px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 6px;
        border-width: 1px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 12px rgba(0, 255, 136, 0.1);
    }
    
    .form-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
        text-shadow: 0 0 12px #00ff88;
        letter-spacing: 1.5px;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
        color: rgba(244, 255, 249, 0.8);
    }
    
    .form-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .form-description {
        padding: 8px;
        margin-bottom: 8px;
        border-radius: 3px;
    }
    
    .form-description p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .cv-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        gap: 8px;
    }
    
    .form-fields-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        gap: 3px;
        display: flex;
        flex-direction: column;
    }
    
    .form-group {
        gap: 3px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 0;
    }
    
    .form-group label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.4px;
        color: #00ff88;
        text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
    }
    
    .form-group input,
    .form-group select {
        padding: 5px 7px;
        font-size: 12px;
        min-height: 32px;
        border-radius: 3px;
        border-width: 1px;
        background: rgba(0, 0, 0, 0.6);
        color: #00ff88;
        transition: all 0.3s ease;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 7px center;
        background-size: 9px;
        padding-right: 24px;
    }
    
    .file-label {
        min-height: 32px;
        padding: 5px 7px;
        border-radius: 3px;
        border-width: 1px;
    }
    
    .file-text {
        font-size: 12px;
    }
    
    .file-icon {
        font-size: 0.7rem;
    }
    
    .submit-btn,
    .premium-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
        font-weight: 700;
        min-height: 42px;
        border-radius: 6px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.4);
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
        letter-spacing: 1px;
    }
    
    .form-actions {
        margin-top: 12px;
        gap: 8px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    

    
    .console-section {
        margin-top: 15px;
        padding: 0;
        max-height: 300px;
        height: 300px;
        transition: all 0.3s ease;
    }
    
    .console-container {
        display: flex;
        height: 100%;
        flex-direction: column;
    }
    
    .console-content {
        padding: 10px;
        flex: 1;
        min-height: 0;
        font-size: 0.7rem;
    }
    
    .console-header {
        padding: 8px 12px;
    }
    
    .console-title {
        font-size: 0.8rem;
    }
    
    .timestamp {
        font-size: 0.65rem;
        min-width: 60px;
    }
    
    .log-text {
        font-size: 0.7rem;
    }
    
    .footer {
        padding: 10px 0;
    }
    
    .footer-content {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-separator {
        display: inline;
        margin: 0 8px;
    }
}

/* Blacklist Modal */
.blacklist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
}

.blacklist-modal:not(.hidden) {
    display: flex;
}

.blacklist-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.blacklist-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff88;
}

.blacklist-modal-header h3 {
    color: #00ff88;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff88;
}

.blacklist-modal-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    line-height: 1;
}

.blacklist-modal-close:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.blacklist-info {
    background: rgba(255, 255, 0, 0.1);
    border: 2px solid #ffcc00;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.blacklist-info h3 {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
}

.blacklist-info h4 {
    color: #ffaa00;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
}

.blacklist-info p {
    color: #ffcc00;
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.blacklist-info ul {
    color: #ffcc00;
    font-size: 0.85rem;
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blacklist-info li {
    margin-bottom: 5px;
}

.blacklist-list {
    margin-bottom: 20px;
}

.blacklist-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.blacklist-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.blacklist-item-company {
    font-size: 1.2rem;
    color: #00ff88;
    font-weight: 600;
}

.blacklist-item-type {
    background: #ff4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
}

.blacklist-item-details {
    color: #00cc66;
    font-size: 0.9rem;
}

.blacklist-item-details div {
    margin-bottom: 5px;
}

.add-blacklist-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-blacklist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.blacklist-form .form-group {
    margin-bottom: 15px;
}

.blacklist-form .form-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

.blacklist-form .submit-btn {
    flex: 1;
    margin-right: 8px;
}

.blacklist-form .cancel-btn {
    flex: 1;
    margin-left: 8px;
}

.blacklist-form label {
    display: block;
    color: #00ff88;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.blacklist-form input,
.blacklist-form select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    border-radius: 5px;
    color: #00ff88;
    font-family: 'JetBrains Mono', monospace;
}

.blacklist-form input[type="file"] {
    padding: 5px;
}

.blacklist-form input:focus,
.blacklist-form select:focus {
    outline: none;
    border-color: #00cc66;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* User Panel Modal (same as blacklist) */
.user-panel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-max);
}

.user-panel-modal:not(.hidden) {
    display: flex;
}

.user-panel-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.user-panel-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff88;
}

.user-panel-modal-header h3 {
    color: #00ff88;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff88;
}

.user-panel-modal-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    line-height: 1;
}

.user-panel-modal-close:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.user-panel-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.tab-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

.tab-btn.active {
    background: #00ff88;
    color: #000;
}

.user-panel-tab-content {
    display: none;
}

.user-panel-tab-content.active {
    display: block;
}

.user-panel-tab-content h4 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.user-panel-form .form-group {
    margin-bottom: 15px;
}

.user-panel-form label {
    display: block;
    color: #00ff88;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.user-panel-form input,
.user-panel-form select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    border-radius: 5px;
    color: #00ff88;
    font-family: 'JetBrains Mono', monospace;
}

/* Şirket Ekleme Modalı */
.add-company-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-index-max);
}

.add-company-modal.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Modal başlangıçta gizli olmalı */
#add-company-modal {
    display: none;
}

#add-company-modal:not(.hidden) {
    display: flex !important;
}

.add-company-modal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #00ff88;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    backdrop-filter: blur(15px);
    will-change: backdrop-filter;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    position: relative;
}

.add-company-modal .modal-header {
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-company-modal .modal-header h3 {
    color: #00ff88;
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
}

.add-company-modal .close-btn {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-company-modal .close-btn:hover {
    color: #ff4444;
}

.add-company-modal .modal-body {
    padding: 20px;
}

.add-company-form .form-group {
    margin-bottom: 12px;
}

.add-company-form label {
    display: block;
    color: #00ff88;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.add-company-form input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    border-radius: 5px;
    color: #00ff88;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.add-company-form input:focus {
    outline: none;
    border-color: #00cc66;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.add-company-form .form-help {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
    font-style: italic;
}

.add-company-form .form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.add-company-form .form-group label a {
    color: #00ff88;
    text-decoration: underline;
}

.add-company-form .form-group label a:hover {
    color: #00cc66;
}

.add-company-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
}

.add-company-form .btn-cancel,
.add-company-form .btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-company-form .btn-cancel {
    background: #333;
    color: #ccc;
    border: 1px solid #555;
}

.add-company-form .btn-cancel:hover {
    background: #444;
    color: #fff;
}

.add-company-form .btn-submit {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
}

.add-company-form .btn-submit:hover {
    background: linear-gradient(45deg, #00cc66, #00ff88);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Şirket Ekleme Modalı - Mobil */
@media (max-width: 768px) {
    .add-company-modal .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }
    
    .add-company-modal .modal-body {
        padding: 15px;
    }
}


@media (max-width: 480px) {
    .add-company-modal .modal-content {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    .add-company-modal .modal-body {
        padding: 12px;
    }
    
}

.user-panel-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.user-panel-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

.applications-list {
    margin-top: 20px;
}

.application-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.application-item h5 {
    color: #00ff88;
    margin-bottom: 10px;
}

.application-item p {
    color: #00cc66;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Ticket Filtreleme */
.tickets-filters {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.tickets-filters select {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.tickets-filters select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Ticket Durum Stilleri */
.ticket-status.open {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.ticket-status.closed {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.ticket-status.pending {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Dosya Durumu */
.file-status {
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.3s ease;
    will-change: opacity, transform;
}

.file-status.hidden {
    display: none;
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.file-name {
    font-weight: 500;
    font-size: 0.8rem;
    color: #00ff88;
}

.file-size {
    font-size: 0.7rem;
    color: #00cc66;
}

.file-remove {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.file-remove:hover {
    background: #cc3333;
    transform: scale(1.1);
}

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

/* Mobil dosya durumu */


@media (max-width: 480px) {
    .container {
        padding: 5px;
    }
    
    .cv-form {
        padding: 10px;
    }
    
    .form-grid {
        gap: 10px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .companies-grid {
        gap: 8px;
    }
    
    .company-item {
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    .contact-modal-content,
    .blacklist-modal-content,
    .tickets-modal-content,
    .user-panel-modal-content {
        margin: 5px;
        max-width: calc(100% - 10px);
        max-height: calc(100vh - 10px);
        border-radius: 8px;
    }
    
    .contact-modal-header,
    .blacklist-modal-header,
    .tickets-modal-header,
    .user-panel-modal-header {
        padding: 12px;
    }
    
    .contact-modal-header h3,
    .blacklist-modal-header h3,
    .tickets-modal-header h3,
    .user-panel-modal-header h3 {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 12px;
    }
    
    .contact-form .form-group {
        margin-bottom: 10px;
    }
    
    .contact-form input,
    .contact-form textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 12px;
    }
    
    .blacklist-content {
        padding: 12px;
    }
    
    .blacklist-info {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .blacklist-info h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .blacklist-info h4 {
        font-size: 0.8rem;
        margin-top: 12px;
        margin-bottom: 6px;
    }
    
    .blacklist-info p {
        font-size: 0.7rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .blacklist-info ul {
        font-size: 0.7rem;
        margin-left: 12px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .blacklist-info li {
        margin-bottom: 2px;
    }
    
    .user-panel-content {
        padding: 10px;
    }
    
    .footer-links {
        gap: 10px;
        font-size: 0.65rem;
    }
    
    .footer-separator {
        margin: 0 5px;
    }
    
    /* Companies List Page - Mobile Specific */
    body.companies-page .auth-section {
        display: none !important;
    }
    
    body.companies-page .statistics-section {
        display: none !important;
    }
    
    body.companies-page .companies-list-header {
        display: none !important;
    }
    
    body.companies-page .companies-hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    body.companies-page .companies-list {
        margin-top: 0 !important;
    }
    
    body.companies-page #companies-container {
        max-height: 50vh;
        overflow-y: auto;
    }
    
    body.companies-page .companies-list-table th {
        padding: 6px 8px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.3px;
    }
    
    body.companies-page .companies-list-table tbody tr {
        height: auto;
        min-height: 0;
    }
    
    body.companies-page .companies-list-table td {
        padding: 5px 8px !important;
        font-size: 0.7rem !important;
        line-height: 1.3;
    }
    
    body.companies-page .company-list-name {
        font-size: 0.7rem !important;
    }
    
    body.companies-page .company-list-email {
        font-size: 0.65rem !important;
    }
    
    body.companies-page .search-tips {
        margin-top: 0 !important;
        margin-bottom: 0;
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    body.companies-page .search-tips li {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }
    
    body.companies-page .companies-hero-card {
        margin-bottom: 8px !important;
    }
    
    body.companies-page .companies-toolbar {
        gap: 6px !important;
        padding: 8px 10px !important;
    }
    
    body.companies-page .toolbar-meta {
        gap: 6px !important;
    }
    
    body.companies-page .toolbar-chip {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        border-radius: 6px !important;
    }
    
    body.companies-page .toolbar-chip .chip-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.3px;
    }
    
    body.companies-page .toolbar-chip .chip-value {
        font-size: 0.65rem !important;
    }
    
    body.companies-page .toolbar-chip.secondary {
        padding: 4px 8px !important;
    }
    
    body.companies-page .toolbar-action {
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
        border-radius: 6px !important;
    }
}

/* Desktop View - Companies Page Padding Fixes */
@media (min-width: 769px) {
    body.companies-page .companies-hero {
        padding: clamp(14px, 2.5vw, 24px) clamp(16px, 2vw, 24px) !important;
    }
    
    body.companies-page .companies-hero-text {
        padding: 0 8px;
    }
    
    body.companies-page .companies-hero-card {
        padding: clamp(12px, 2.5vw, 18px) clamp(14px, 2vw, 20px) !important;
    }
    
    body.companies-page .companies-toolbar {
        padding: 12px 16px !important;
    }
    
    body.companies-page .toolbar-chip {
        padding: 6px 12px;
    }
    
    body.companies-page .toolbar-action {
        padding: 6px 14px;
    }
    
    body.companies-page .companies-list {
        padding: 8px;
    }
    
    body.companies-page .companies-list-table th,
    body.companies-page .companies-list-table td {
        padding: 10px 14px;
    }
}
