<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* PDF iÃ§in animasyon ve opacity devre dÄ±ÅŸÄ± */
body.no-anim *, body.no-anim *:before, body.no-anim *:after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}
/* Light tema (varsayÄ±lan) */
body[data-theme="light"] {
    --bg-primary: #f3f4f6;
    --bg-secondary: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-color: #e5e7eb;
    --input-bg: #ffffff;
    --input-border: #d1d5db;
    --button-primary: #2563eb;
    --button-primary-hover: #1d4ed8;
    --button-secondary: #10b981;
    --button-secondary-hover: #059669;
}

/* Dark tema */
body[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e1e2d;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border-color: #2d3348;
    --input-bg: #1e293b;
    --input-border: #475569;
    --button-primary: #3b82f6;
    --button-primary-hover: #2563eb;
    --button-secondary: #10b981;
    --button-secondary-hover: #059669;
    --animate-duration: 0.3s;
}

/* Genel stiller */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.5s ease, color 0.5s ease;
}

.bg-white {
    background-color: var(--bg-secondary) !important;
}

input, textarea, select {
    background-color: var(--input-bg) !important;
    border-color: var(--input-border) !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

input::placeholder, textarea::placeholder {
    color: var(--text-secondary) !important;
}

label {
    color: var(--text-primary) !important;
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* Form animasyonlarÄ± */
input:focus, textarea:focus, select:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Buton animasyonlarÄ± */
button {
    transition: all 1s ease !important;
    position: relative;
    overflow: hidden;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(0);
}

/* CV Ã–nizleme animasyonlarÄ± */
#cvArea {
    animation: scaleIn 0.6s ease;
    transition: all 0.3s ease;
}

#cvArea:hover {
    transform: scale(1.01);
}

/* Template animasyonlarÄ± */
#cvArea h1, #cvArea h2 {
    animation: slideIn 0.6s ease;
}

#cvArea p, #cvArea ul {
    animation: fadeIn 0.8s ease;
}

/* FotoÄŸraf animasyonu */
#cvArea img {
    transition: all 0.3s ease;
}

#cvArea img:hover {
    transform: scale(1.05);
}

/* Tema geÃ§iÅŸ animasyonu */
#themeToggle {
    transition: all 0.3s ease;
}

#themeToggle:hover {
    transform: rotate(360deg);
    background-color: var(--button-primary) !important;
    color: white;
}

/* Skill ve dil etiketleri iÃ§in hover efekti */
.bg-blue-200, .bg-blue-100 {
    transition: all 0.3s ease !important;
}

.bg-blue-200:hover, .bg-blue-100:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Kamera container animasyonu */
#cameraContainer {
    animation: scaleIn 0.3s ease;
}

/* Dark tema Ã¶zel efektleri */
body[data-theme="dark"] {
    background: linear-gradient(135deg, 
        #0f172a 0%,
        #1a1f35 25%,
        #1e1e2d 50%,
        #1a1f35 75%,
        #0f172a 100%
    );
    position: relative;
    background-attachment: fixed;
}

body[data-theme="dark"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Dark tema gÃ¶lge efektleri */
body[data-theme="dark"] .bg-white {
    background-color: #1e1e2d !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

body[data-theme="dark"] input:focus,
body[data-theme="dark"] textarea:focus,
body[data-theme="dark"] select:focus {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* Template 1 dark tema uyumluluÄŸu */
body[data-theme="dark"] .text-gray-600 {
    color: var(--text-secondary) !important;
}

/* Template 2 dark tema uyumluluÄŸu */
body[data-theme="dark"] .bg-blue-50 {
    background-color: #0f172a !important;
    border-color: #3b82f6 !important;
}

body[data-theme="dark"] .border-blue-600 {
    border-color: #60a5fa !important;
}

body[data-theme="dark"] .text-blue-800 {
    color: #e2e8f0 !important;
}

body[data-theme="dark"] .text-blue-600 {
    color: #93c5fd !important;
}

body[data-theme="dark"] .text-blue-700 {
    color: #bfdbfe !important;
}

body[data-theme="dark"] .bg-blue-200 {
    background-color: #1e40af !important;
}

body[data-theme="dark"] .text-blue-900 {
    color: #f1f5f9 !important;
}

body[data-theme="dark"] .bg-blue-100 {
    background-color: #172554 !important;
}

/* Skill ve dil etiketleri iÃ§in hover efekti - Dark tema */
body[data-theme="dark"] .bg-blue-200:hover,
body[data-theme="dark"] .bg-blue-100:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Input ve buton hover efektleri - Dark tema */
body[data-theme="dark"] input:hover,
body[data-theme="dark"] textarea:hover,
body[data-theme="dark"] select:hover {
    border-color: #60a5fa !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Tema toggle butonu - Dark tema */
body[data-theme="dark"] #themeToggle:hover {
    background-color: #3b82f6 !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* CV Ã¶nizleme hover efekti - Dark tema */
body[data-theme="dark"] #cvArea:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transform: scale(1.01);
}

/* Tema deÄŸiÅŸtirici slider */
.theme-switch {
    position: relative;
    width: 62px;
    height: 32px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f3f4f6;
    transition: .4s;
    border-radius: 30px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    overflow: hidden;
}

/* SVG ikonlar iÃ§in Ã¶zel stiller */
.slider svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.slider .sun {
    color: #ffb700;
    stroke-width: 1.5;
}

.slider .moon {
    color: #94a3b8;
    stroke-width: 1.5;
    margin-left: auto;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Dark tema durumunda slider stilleri */
body[data-theme="dark"] .slider {
    background-color: #1e293b;
    border-color: #475569;
}

body[data-theme="dark"] .slider:before {
    transform: translateX(29px);
    background-color: #3b82f6;
}

body[data-theme="dark"] .slider .sun {
    color: #fbbf24;
    opacity: 0.5;
}

body[data-theme="dark"] .slider .moon {
    color: #f1f5f9;
}

/* Light tema durumunda slider stilleri */
body[data-theme="light"] .slider .sun {
    opacity: 1;
}

body[data-theme="light"] .slider .moon {
    opacity: 0.5;
}

/* Hover efektleri */
.slider:hover {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.slider:hover:before {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.slider:hover .sun {
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.slider:hover .moon {
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
}

/* Dark tema - Dosya ve Kamera butonlarÄ± */
body[data-theme="dark"] input[type="file"] {
    background-color: #1e293b !important;
    border-color: #475569 !important;
    color: #f1f5f9 !important;
}

body[data-theme="dark"] #cameraBtn {
    background-color: #1e293b !important;
    border: 1px solid #475569;
    color: #f1f5f9 !important;
}

body[data-theme="dark"] #cameraBtn:hover {
    background-color: #2d3748 !important;
    border-color: #60a5fa;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* File input iÃ§in Ã¶zel hover efekti */
body[data-theme="dark"] input[type="file"]:hover {
    background-color: #2d3748 !important;
    border-color: #60a5fa !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* File input iÃ§in Ã¶zel focus efekti */
body[data-theme="dark"] input[type="file"]:focus {
    outline: none;
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* File input iÃ§in Ã¶zel placeholder rengi */
body[data-theme="dark"] input[type="file"]::file-selector-button {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] input[type="file"]::file-selector-button:hover {
    background-color: #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ã–zelleÅŸtirilmiÅŸ dosya input */
.custom-file-input {
    position: relative;
    width: 100%;
    height: 40px;
}

.custom-file-input input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.custom-file-input .file-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Light tema hover efekti */
.custom-file-input:hover .file-text {
    border-color: var(--button-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

/* Dark tema hover efekti */
body[data-theme="dark"] .custom-file-input:hover .file-text {
    border-color: #60a5fa;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Mobil responsive stiller */
@media (max-width: 768px) {
    body {
        padding: 1rem !important;
    }

    .custom-file-input {
        height: 48px; /* Mobilde daha bÃ¼yÃ¼k dokunma alanÄ± */
    }

    .custom-file-input .file-text {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    /* Mobilde daha bÃ¼yÃ¼k butonlar */
    button {
        font-size: 14px !important; /* Daha kÃ¼Ã§Ã¼k font boyutu */
        padding: 0.5rem 1rem !important; /* Daha az padding */
        width: auto; /* GeniÅŸliÄŸi iÃ§eriÄŸe gÃ¶re ayarla */
        display: block; /* ButonlarÄ± dikey hizala */
        margin: 0 auto; /* Ortala */
        text-align: center; /* Metni ortala */
    } 
    }

    /* Mobilde form elemanlarÄ± */
    input, textarea, select {
        font-size: 16px !important; /* iOS'ta zoom'u engeller */
        padding: 0.75rem !important;
    }

    /* Mobilde CV Ã¶nizleme */
    #cvArea {
        margin-top: 2rem;
    }


/* Tablet ve orta boy ekranlar */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid {
        gap: 1.5rem !important;
    }
}

/* SÃ¼rÃ¼kle bÄ±rak efekti */
.custom-file-input.drag-over .file-text {
    background-color: var(--input-bg);
    border-style: dashed;
    border-width: 2px;
    border-color: var(--button-primary);
}

/* Okunmayan mesaj gÃ¶stergesi stilleri */
.dm-unread-indicator {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #e74c3c;
    margin: 8px 0 2px 0;
    font-weight: 500;
    gap: 4px;
}

.dm-unread-x {
    font-size: 13px;
    font-weight: bold;
    color: #e74c3c;
    margin-right: 2px;
}

.dm-unread-label {
    font-size: 12px;
    color: #e74c3c;
}

/* DM envelope unread badge */
.dm-envelope-badge {
    position: absolute;
    top: -6px; /* Manuel piksel ayarÄ± iÃ§in kolayca deÄŸiÅŸtirilebilir */
    right: -6px; /* Manuel piksel ayarÄ± iÃ§in kolayca deÄŸiÅŸtirilebilir */
    min-width: 16px;
    height: 16px;
    background: #e74c3c;
    color: #fff;
    border-radius: 999px;
    border: 2px solid #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 0 2px #e74c3c;
    pointer-events: none;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
    line-height: 1;
    transition: top 0.2s,right 0.2s, visibility 0.2s;
    visibility: hidden;
}
#dmEnvelopeBtn {
    position: relative;
    display: inline-block;
    overflow: visible;
}
@media (max-width: 600px) {
  .dm-envelope-badge {
    top: -4px;
    right: -4px;
    min-width: 13px;
    height: 13px;
    font-size: 9px;
    border-width: 1.5px;
    padding: 0 2px;
  }
}

/* Bildirim kutusu stilleri */
#notificationDropdown {
    max-height: 210px; /* 3 bildirimlik yÃ¼kseklik */
    overflow-y: auto;
    min-height: 0;
    transition: max-height 0.2s;
}

#notificationList {
    max-height: none;
    overflow-y: visible;
    min-height: 0;
}

/* Bildirim yuvarlaÄŸÄ± (notificationDot) DM badge ile hizalÄ± */
#notificationBellBtn {
    position: relative;
    display: inline-block;
}
#notificationDot {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    background: #e74c3c;
    color: #fff;
    border-radius: 999px;
    border: 2px solid #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 0 2px #e74c3c;
    pointer-events: none;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
    line-height: 1;
    transition: top 0.2s,right 0.2s, visibility 0.2s;
    visibility: hidden;
}
@media (max-width: 600px) {
  #notificationDot {
    top: -4px;
    right: -4px;
    min-width: 13px;
    height: 13px;
    font-size: 9px;
    border-width: 1.5px;
    padding: 0 2px;
  }
}</pre></body></html>