:root {
    /* Dark Coder Theme Colors (Default) */
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #1c2128;
    --bg-card: #21262d;
    --bg-hover: #30363d;
    
    /* Code Colors */
    --code-green: #3fb950;
    --code-blue: #58a6ff;
    --code-purple: #bc8cff;
    --code-orange: #ff7b72;
    --code-yellow: #d29922;
    --code-red: #f85149;
    --code-gray: #8b949e;
    
    /* Text Colors */
    --text-primary: #c9d1d9;
    --text-secondary: #8b949e;
    --text-tertiary: #6e7681;
    --text-white: #ffffff;
    
    /* Accent Colors */
    --accent-primary: #58a6ff;
    --accent-secondary: #3fb950;
    --accent-hover: #79c0ff;
    
    /* Borders */
    --border-color: #30363d;
    --border-hover: #484f58;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(88, 166, 255, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Light Theme */
[data-theme="light"] {
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f6f8fa;
    --bg-tertiary: #f0f3f6;
    --bg-card: #ffffff;
    --bg-hover: #e7ecf0;
    
    /* Code Colors (lighter) */
    --code-green: #1a7f37;
    --code-blue: #0969da;
    --code-purple: #8250df;
    --code-orange: #cf222e;
    --code-yellow: #9a6700;
    --code-red: #cf222e;
    --code-gray: #57606a;
    
    /* Text Colors */
    --text-primary: #24292f;
    --text-secondary: #57606a;
    --text-tertiary: #6e7781;
    --text-white: #ffffff;
    
    /* Accent Colors */
    --accent-primary: #0969da;
    --accent-secondary: #1a7f37;
    --accent-hover: #0860ca;
    
    /* Borders */
    --border-color: #d0d7de;
    --border-hover: #afb8c1;
    
    /* Shadows (lighter) */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(9, 105, 218, 0.2);
}

[data-theme="light"] body {
    background: #ffffff;
}

[data-theme="light"] #codeCanvas {
    opacity: 1 !important;
}

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

body {
    font-family: 'Poppins', 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Code Background Animation */
.code-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    opacity: 1 !important;
    pointer-events: none;
    background: transparent !important;
    overflow: hidden;
}

#codeCanvas {
    width: 100vw !important;
    height: 100vh !important;
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

/* Layered Content */
body > *:not(.code-background) {
    position: relative;
    z-index: 1;
}

/* Layered Page Sections - Full Screen Navigation */
.layered-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
    visibility: hidden;
    background: transparent !important;
}

.layered-page.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: all !important;
    z-index: 20 !important;
    visibility: visible !important;
    background: transparent !important;
    display: block !important;
}

.layered-page.active > * {
    background: transparent !important;
}

.layered-page.active section {
    background: transparent !important;
}

.layered-page.active .about,
.layered-page.active .services,
.layered-page.active .contact,
.layered-page.active .team {
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.layered-page.active .services-hero,
.layered-page.active .services-grid,
.layered-page.active .services-cta,
.layered-page.active .section-title {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.layered-page.active .about-container,
.layered-page.active .blog-post,
.layered-page.active .blog-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.layered-page.hidden {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 5;
    visibility: hidden;
}

/* Smooth scrollbar for layered pages */
.layered-page::-webkit-scrollbar {
    width: 8px;
}

.layered-page::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.layered-page::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

.layered-page::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.navbar {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.95);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 5%;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: -0.5px;
    transition: var(--transition-base);
    font-family: 'Fira Code', 'Consolas', monospace;
}

.logo-text:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 10px var(--accent-primary);
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: -5px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-base);
    font-family: 'Fira Code', 'Consolas', monospace;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-primary);
    transition: var(--transition-base);
    box-shadow: 0 0 5px var(--accent-primary);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
    pointer-events: auto !important;
    z-index: 1001;
    position: relative;
}

.theme-toggle:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(15deg);
    box-shadow: var(--shadow-glow);
}

.theme-toggle i {
    transition: var(--transition-base);
}

[data-theme="light"] .theme-toggle i.fa-moon::before {
    content: "\f185"; /* fa-sun */
}

[data-theme="dark"] .theme-toggle i.fa-sun::before {
    content: "\f186"; /* fa-moon */
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(63, 185, 80, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--accent-primary);
    border-color: var(--accent-hover);
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.2;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.code-bracket {
    color: var(--code-gray);
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Fira Code', 'Consolas', monospace;
}

/* Code Tags */
.code-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.code-tag {
    background: var(--bg-card);
    color: var(--code-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.code-tag:hover {
    background: var(--bg-hover);
    border-color: var(--code-green);
    box-shadow: 0 0 10px rgba(63, 185, 80, 0.3);
    transform: translateY(-2px);
}

/* Typing Animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.animate-typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--accent-primary);
    animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-primary); }
}

.spotify-section {
    padding: 4rem 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.spotify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.music-player {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.music-player:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--border-color-secondary);
}

.spotify-player {
    position: relative;
    background: #1DB954;
    border-radius: 12px;
    padding: 1rem;
}

.spotify-player iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.player-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.volume-btn, .sync-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.volume-btn:hover, .sync-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.volume-btn.active, .sync-btn.active {
    background: #1DB954;
}

.sync-btn.active {
    animation: spin 2s linear infinite;
}

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

.lyrics-container {
    background: var(--card-gradient);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 2px solid var(--border-color-secondary);
    backdrop-filter: blur(20px);
}

.lyrics-container.expanded {
    height: 100%;
}

.lyrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color-secondary);
    padding-bottom: 1rem;
}

.lyrics-toggle {
    background: var(--button-gradient);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.lyrics-toggle:hover {
    background: var(--hover-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

.lyrics-toggle.active {
    background: var(--hover-gradient);
}

.current-song {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.current-song h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
}

.current-song p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.lyrics-text {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.lyrics-line {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    opacity: 0.7;
    text-align: center;
}

.lyrics-line.active {
    opacity: 1;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Kaydırma çubuğu stilleri */
.lyrics-text::-webkit-scrollbar {
    width: 6px;
}

.lyrics-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.lyrics-text::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 3px;
}

.lyrics-text::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .music-player {
        grid-template-columns: 1fr;
    }
    
    .spotify-player {
        height: 300px;
    }
    
    .spotify-player iframe {
        height: 280px;
    }
    
    .lyrics-container {
        height: 400px;
    }
}

.spotify-loading {
    text-align: center;
    padding: 2rem;
}

.spotify-track {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.spotify-track:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.spotify-track img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin-right: 1rem;
}

.spotify-track-info {
    flex: 1;
}

.spotify-track-info h4 {
    margin: 0;
    color: white;
}

.spotify-track-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.spotify-track a {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.spotify-track a:hover {
    color: var(--accent-color);
}

.contact {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 700;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.contact .section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    background: var(--bg-hover);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
}

.info-item:hover i {
    color: var(--accent-hover);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

.info-item h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    font-family: 'Fira Code', 'Consolas', monospace;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
    background: var(--bg-tertiary);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.submit-btn {
    background: var(--accent-primary);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--accent-hover);
}

.submit-btn:active {
    transform: translateY(0);
}

/* File Input Styling */
.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: transparent;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--accent-color);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    z-index: 1000;
}

/* Error Message */
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #f44336;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    z-index: 1000;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact .section-title {
        font-size: 2rem;
    }
}

.social-links {
    display: flex !important;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 101;
    position: relative;
    border: 2px solid var(--border-color);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    color: var(--accent-primary);
}

.social-icon i {
    font-size: 1.4rem;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 102;
    position: relative;
    transition: var(--transition-base);
}

.social-icon:hover i {
    transform: rotate(360deg);
}

.fab {
    display: inline-block !important;
    font-family: "Font Awesome 6 Brands" !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 103;
    position: relative;
}

footer {
    background: var(--bg-secondary);
    padding: 4rem 5%;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(63, 185, 80, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
    bottom: -5px;
    left: 0;
    box-shadow: 0 0 10px var(--accent-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-card, .feature, .team-member {
        margin-bottom: 2rem;
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team {
    padding: 5rem 2rem;
    background: radial-gradient(circle at top left, rgba(88, 166, 255, 0.25), transparent 55%),
                radial-gradient(circle at bottom right, rgba(63, 185, 80, 0.2), transparent 55%),
                var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(123, 45, 142, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--card-gradient);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform-style: preserve-3d;
    opacity: 0;
    animation: teamCardIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.team-lead {
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(88, 166, 255, 0.4);
}

.team-ribbon {
    position: absolute;
    top: 20px;
    left: -40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: var(--text-white);
    padding: 0.3rem 2.5rem;
    transform: rotate(-20deg);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: var(--accent-gradient);
    padding: 4px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.team-status {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #999;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.team-status.online {
    background: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.7);
}

.team-role {
    font-size: 0.95rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.skill-tag {
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Fira Code', 'Consolas', monospace;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover::before {
    transform: translateX(100%);
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02) rotate3d(1, 1, 0, 8deg);
    box-shadow: var(--shadow-secondary);
    border-color: var(--border-color-secondary);
}

/* Team reveal animation tweaks */
.team .reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.team-member:nth-child(1) {
    animation-delay: 0.15s;
}

.team-member:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes teamCardIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95) rotate3d(1, 0, 0, -10deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02) rotate3d(1, 1, 0, 4deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate3d(0, 0, 0, 0deg);
    }
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid transparent;
    background: var(--accent-gradient);
    padding: 4px;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.team-member:hover img {
    background: var(--secondary-gradient);
    box-shadow: var(--shadow-secondary);
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.team-member p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.team-member .social-links {
    margin-top: 1rem;
    display: flex !important;
    visibility: visible !important;
}

.team-member .social-links a {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    visibility: visible !important;
}

.team-member .social-links a:hover {
    transform: translateY(-2px);
}

.spotify-login {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.spotify-login-btn {
    background-color: #1DB954;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.spotify-login-btn:hover {
    background-color: #1ed760;
}

.spotify-login-btn i {
    font-size: 1.2rem;
}

.spotify-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

#play-pause-btn {
    font-size: 2rem;
    background-color: var(--primary-color);
    color: white;
}

#play-pause-btn:hover {
    background-color: var(--secondary-color);
}

.about {
    padding: 5rem 2rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    min-height: 100vh;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Blog Post Styles */
.blog-post {
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.meta-item i {
    color: var(--accent-primary);
}

.blog-content {
    line-height: 1.8;
}

/* Author Card */
.author-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 4rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.author-card:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.author-image {
    flex-shrink: 0;
}

.author-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--accent-primary);
    object-fit: cover;
    box-shadow: var(--shadow-glow);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-weight: 700;
}

.author-title {
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-weight: 500;
}

.author-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.author-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stack-badge {
    background: var(--bg-secondary);
    color: var(--code-green);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-weight: 600;
    transition: var(--transition-base);
}

.stack-badge:hover {
    background: var(--bg-hover);
    border-color: var(--code-green);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(63, 185, 80, 0.3);
}

/* Blog Sections */
.blog-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-section:last-of-type {
    border-bottom: none;
}

.section-heading {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.section-heading::before {
    content: '//';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    opacity: 0.6;
}

.blog-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 1rem;
}

.blog-text strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Timeline Styles */
.timeline {
    margin-bottom: 4rem;
}

.timeline-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.timeline-container {
    position: relative;
    padding-left: 3rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.timeline-year {
    position: absolute;
    left: -8rem;
    top: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'Fira Code', 'Consolas', monospace;
    white-space: nowrap;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.timeline-content:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
    transform: translateX(10px);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Tech Stack Section */
.tech-stack {
    margin-bottom: 4rem;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stack-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.stack-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.stack-item:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.stack-item:hover::before {
    transform: scaleY(1);
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.stack-item:hover .stack-icon {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: rotate(5deg);
}

.stack-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.stack-item h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-weight: 600;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-list li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    position: relative;
    padding-left: 1.5rem;
    transition: var(--transition-base);
}

.stack-list li:last-child {
    border-bottom: none;
}

.stack-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--code-green);
    font-weight: bold;
}

.stack-list li:hover {
    color: var(--text-primary);
    padding-left: 2rem;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .author-img {
        width: 150px;
        height: 150px;
    }
    
    .author-name {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .stack-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
    background: var(--bg-hover);
}

.feature i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.feature:hover i {
    color: var(--accent-hover);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Animasyon sınıfları */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Elementlere animasyon ekleme */
.hero-content {
    animation: slideUp 1s ease-out;
}

.section-header {
    animation: fadeIn 1s ease-in-out;
}

.feature {
    animation: slideUp 1s ease-out;
    animation-fill-mode: both;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }

.team-member {
    animation: slideUp 1s ease-out;
    animation-fill-mode: both;
}

.team-member:hover {
    animation: pulse 1s ease-in-out;
}

.spotify-container {
    animation: slideUp 1s ease-out;
}

.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    animation: pulse 0.5s ease-in-out;
    color: var(--primary-color);
}

/* Scroll animasyonları */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About page reveal animations */
.about .reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover efektleri */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Logo animasyonu */
.logo {
    animation: slideInLeft 1s ease-out;
}

.logo-text {
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Buton animasyonları */
.spotify-login-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spotify-login-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.spotify-login-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Hizmetler Bölümü */
.services {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

[data-theme="light"] .about {
    background: transparent !important;
}

[data-theme="light"] .services {
    background: transparent !important;
}

/* Force light theme for all about and services elements */
[data-theme="light"] .about *,
[data-theme="light"] .services * {
    color: var(--text-primary) !important;
}

[data-theme="light"] .about-container,
[data-theme="light"] .blog-post,
[data-theme="light"] .author-card,
[data-theme="light"] .service-card,
[data-theme="light"] .services-grid > * {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .about-container *,
[data-theme="light"] .blog-post *,
[data-theme="light"] .author-card *,
[data-theme="light"] .service-card * {
    color: var(--text-primary) !important;
}

[data-theme="light"] .blog-title,
[data-theme="light"] .author-name,
[data-theme="light"] .service-card h3 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .blog-meta,
[data-theme="light"] .author-title,
[data-theme="light"] .author-bio,
[data-theme="light"] .service-card p,
[data-theme="light"] .service-features li {
    color: var(--text-secondary) !important;
}

/* About page specific styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 166, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(63, 185, 80, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.blog-post {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.blog-post:hover::before {
    left: 100%;
}

.blog-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(88, 166, 255, 0.3);
    border-color: var(--accent-primary);
}

.blog-post > * {
    position: relative;
    z-index: 1;
}

[data-theme="light"] .blog-post {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.blog-header {
    animation: slideInDown 0.8s ease-out;
    margin-bottom: 2rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.blog-title:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-hover));
    border-radius: 2px;
    animation: slideInRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 0 10px var(--accent-primary);
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    animation: fadeInUp 1.2s ease-out;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.meta-item:hover {
    transform: translateX(5px);
    color: var(--accent-primary);
}

.meta-item i {
    transition: transform 0.3s ease;
}

.meta-item:hover i {
    transform: rotate(360deg);
}

.author-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.15), transparent);
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.author-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.author-card:hover::before {
    left: 100%;
}

.author-card:hover::after {
    transform: scale(1);
}

.author-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 70px rgba(88, 166, 255, 0.4);
    border-color: var(--accent-primary);
    background: var(--bg-hover);
}

.author-card > * {
    position: relative;
    z-index: 1;
}

.author-image {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.author-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatImage 3s ease-in-out infinite;
    position: relative;
}

.author-img::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    opacity: 0;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.author-card:hover .author-img {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 40px var(--accent-primary), 0 0 80px rgba(88, 166, 255, 0.3);
    border-color: var(--accent-hover);
}

.author-card:hover .author-img::before {
    animation: pulseRing 1s ease-in-out infinite;
}

.author-info {
    flex: 1;
    animation: fadeInRight 1s ease-out;
}

.author-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.2s ease-out;
}

.author-title {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1.4s ease-out;
}

.author-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.6s ease-out;
}

.author-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease-out;
}

.stack-badge {
    background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-tertiary) 100%);
    color: var(--accent-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stack-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.stack-badge > * {
    position: relative;
    z-index: 1;
}

.stack-badge:nth-child(1) { animation-delay: 0.1s; }
.stack-badge:nth-child(2) { animation-delay: 0.2s; }
.stack-badge:nth-child(3) { animation-delay: 0.3s; }

.stack-badge:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--accent-primary);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.5);
    border-color: var(--accent-hover);
}

.stack-badge:hover::before {
    width: 300px;
    height: 300px;
}

.blog-section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.blog-section.active {
    opacity: 1;
    transform: translateY(0);
}

.blog-section:nth-child(1) { animation-delay: 0.1s; }
.blog-section:nth-child(2) { animation-delay: 0.2s; }
.blog-section:nth-child(3) { animation-delay: 0.3s; }
.blog-section:nth-child(4) { animation-delay: 0.4s; }
.blog-section:nth-child(5) { animation-delay: 0.5s; }
.blog-section:nth-child(6) { animation-delay: 0.6s; }

.blog-section:hover {
    transform: translateX(10px);
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-hover));
    border-radius: 3px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px var(--accent-primary);
    animation: growHeight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes growHeight {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 1.5rem;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-section:hover .section-heading {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.blog-section:hover .section-heading::before {
    height: 120%;
    box-shadow: 0 0 15px var(--accent-primary);
}

.blog-section:hover .section-heading::after {
    width: calc(100% - 1.5rem);
}

.blog-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.blog-text strong {
    color: var(--accent-primary);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.blog-text strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.blog-section:hover .blog-text {
    color: var(--text-primary);
    transform: translateX(3px);
}

.blog-section:hover .blog-text strong {
    color: var(--accent-hover);
}

.blog-section:hover .blog-text strong::after {
    width: 100%;
}

.tech-stack {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stack-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stack-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.stack-item:hover::before {
    transform: scale(1);
}

.stack-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.stack-icon {
    font-size: 3.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(88, 166, 255, 0.3));
}

.stack-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.stack-item:hover .stack-icon {
    transform: rotate(360deg) scale(1.3);
    color: var(--accent-hover);
    filter: drop-shadow(0 0 20px rgba(88, 166, 255, 0.8));
}

.stack-item:hover .stack-icon::before {
    width: 100px;
    height: 100px;
}

.stack-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stack-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.stack-list li {
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 2px solid transparent;
    margin-left: -2px;
}

.stack-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

.stack-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(88, 166, 255, 0.1), transparent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.stack-list li:hover {
    color: var(--text-primary);
    transform: translateX(8px);
    border-left-color: var(--accent-primary);
    padding-left: 2.5rem;
}

.stack-list li:hover::before {
    transform: translateX(5px) scale(1.3);
    color: var(--accent-hover);
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

.stack-list li:hover::after {
    width: 100%;
}

/* Professional Timeline Resume Section */
.resume-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.resume-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    position: relative;
    padding-bottom: 1rem;
}

.resume-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-primary);
}

.resume-title i {
    color: var(--accent-primary);
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-hover) 50%, var(--accent-primary) 100%);
    background-size: 100% 200%;
    animation: gradientFlow 3s ease infinite;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.5);
    opacity: 0;
    height: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-line.animated {
    opacity: 1;
    height: 100%;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 120px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: 120px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: auto;
    right: 0;
}

.timeline-item:nth-child(even) .timeline-marker .timeline-year {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.timeline-marker .timeline-year {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: var(--bg-card);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.4);
    z-index: 15;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 4px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(88, 166, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.5);
    box-shadow: 0 0 40px var(--accent-primary), 0 0 80px rgba(88, 166, 255, 0.4);
    border-color: var(--accent-hover);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 40px var(--accent-primary), 0 0 80px rgba(88, 166, 255, 0.6);
}

.timeline-content-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.timeline-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.timeline-content-card:hover::before {
    left: 100%;
}

.timeline-content-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(88, 166, 255, 0.4);
    border-color: var(--accent-primary);
    background: var(--bg-hover);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.8rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(88, 166, 255, 0.05));
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Fira Code', 'Consolas', monospace;
}

.timeline-item:hover .timeline-year {
    transform: translateX(5px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: var(--text-white);
    box-shadow: 0 0 20px var(--accent-primary);
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Fira Code', 'Consolas', monospace;
}

.timeline-item:hover .timeline-title {
    color: var(--accent-primary);
    transform: translateX(3px);
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.timeline-item:hover .timeline-description {
    color: var(--text-primary);
}

.timeline-description strong {
    color: var(--accent-primary);
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-description strong {
    color: var(--accent-hover);
}

.timeline-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.timeline-tag {
    background: var(--bg-hover);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Fira Code', 'Consolas', monospace;
    position: relative;
    overflow: hidden;
}

.timeline-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.timeline-tag > * {
    position: relative;
    z-index: 1;
}

.timeline-tag:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--accent-primary);
    color: var(--text-white);
    border-color: var(--accent-hover);
    box-shadow: 0 5px 20px rgba(88, 166, 255, 0.5);
}

.timeline-tag:hover::before {
    width: 200px;
    height: 200px;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        left: 0;
        right: auto;
    }
    
    .timeline-line {
        left: 40px;
    }
    
    .timeline-marker {
        width: 80px;
    }
    
    .timeline-content-card {
        padding: 1.5rem;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(88, 166, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(88, 166, 255, 0.6);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced blog post animations */
.blog-post {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-hover) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

.blog-post:hover {
    animation: gradientShift 5s ease infinite;
}

/* Enhanced author card glow */
.author-card {
    animation: glow 3s ease-in-out infinite;
}

.author-card:hover {
    animation: glow 1s ease-in-out infinite;
}

/* Enhanced stack item entrance */
.stack-item {
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stack-item:hover {
    animation: glow 2s ease-in-out infinite;
}

[data-theme="light"] .author-card {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(63, 185, 80, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services .section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.services .section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(88, 166, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
    background: var(--bg-hover);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-hover);
    filter: drop-shadow(0 0 15px var(--accent-primary));
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card h3 {
    color: var(--text-primary);
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.service-features li:hover {
    color: var(--accent-primary);
}

.service-features i {
    font-size: 1rem;
    color: var(--accent-primary);
}

/* Services Hero Section */
.services-hero {
    padding: 80px 20px 60px;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(88, 166, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Service Card Styles */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(88, 166, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    box-shadow: 0 0 30px rgba(88, 166, 255, 0.5);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper i {
    color: var(--text-white);
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    background: var(--accent-primary);
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
    z-index: 10;
}

.service-badge.premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    min-height: 60px;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.tech-tag {
    padding: 0.3rem 0.8rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Fira Code', 'Consolas', monospace;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--accent-primary);
    color: var(--text-white);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.service-btn {
    padding: 0.6rem 1.5rem;
    background: var(--accent-primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.service-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
}

.service-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-features {
    flex-grow: 1;
    margin-bottom: 1rem;
}

/* Services CTA Section */
.services-cta {
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(63, 185, 80, 0.1));
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(88, 166, 255, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Fira Code', 'Consolas', monospace;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--accent-primary);
    color: var(--text-white);
    border: 2px solid var(--accent-primary);
}

.cta-btn.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 166, 255, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.cta-btn.secondary:hover {
    background: var(--accent-primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 166, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: auto;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
}

/* Referanslar Bölümü */
.portfolio {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    color: var(--primary-color);
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* AI Assistant Styles */
.assistant {
    padding: 80px 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.assistant-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.chat-container {
    background-color: var(--card-background);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    max-width: 80%;
}

.message.user {
    margin-left: auto;
}

.message.bot {
    margin-right: auto;
}

.message-content {
    padding: 15px;
    border-radius: 15px;
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.message.user .message-content {
    background-color: var(--secondary-color);
}

.chat-input {
    padding: 20px;
    background-color: var(--card-background);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 16px;
}

.chat-input input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.chat-input button {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    background-color: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Scrollbar Styles */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Admin Panel Styles */
.admin-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 11, 46, 0.95) 100%);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    background: var(--card-gradient);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(20px);
}

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

.admin-header h2 {
    color: var(--text-color);
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.logout-btn {
    background: var(--button-gradient);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
    background: var(--hover-gradient);
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 5px;
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: var(--text-color);
}

.tab-btn:hover:not(.active) {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-content {
    display: none;
}

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

/* Messages Tab */
.messages-header, .cvs-header, .settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.messages-header h3, .cvs-header h3, .settings-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
}

.message-filters, .cv-filters {
    display: flex;
    gap: 1rem;
}

select {
    background-color: var(--card-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Message Item */
.message-item, .cv-item {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.message-item:hover, .cv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.message-header, .cv-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.message-actions, .cv-actions {
    display: flex;
    gap: 1rem;
}

.message-actions button, .cv-actions button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.approve-btn {
    background-color: #4CAF50;
    color: white;
}

.reject-btn {
    background-color: #f44336;
    color: white;
}

.delete-btn {
    background-color: #ff9800;
    color: white;
}

/* Settings Tab */
.settings-content {
    display: grid;
    gap: 2rem;
}

.setting-item {
    background-color: var(--card-background);
    padding: 1.5rem;
    border-radius: 10px;
}

.setting-item h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.setting-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.setting-btn {
    background: var(--gold-gradient);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.setting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.3);
}

/* CV Item Specific */
.cv-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.cv-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cv-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-pending {
    background-color: #ff9800;
    color: white;
}

.status-approved {
    background-color: #4CAF50;
    color: white;
}

.status-rejected {
    background-color: #f44336;
    color: white;
}

.admin-login-btn {
    background: var(--button-gradient);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-left: 1rem;
    box-shadow: var(--shadow-primary);
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
    background: var(--hover-gradient);
}

/* Admin Login Modal Styles */
.admin-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 11, 46, 0.95) 100%);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
}

.admin-login-modal.active {
    display: flex;
}

.admin-login-container {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-primary);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.admin-login-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: var(--transition);
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.login-submit-btn {
    background: var(--button-gradient);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
    background: var(--hover-gradient);
}

/* Message Management Styles */
.message-filters {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.message-filters select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
}

.message-item {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.message-item:hover {
    transform: translateY(-2px);
}

.message-item.pending {
    border-left: 4px solid #ffc107;
}

.message-item.approved {
    border-left: 4px solid #28a745;
}

.message-item.rejected {
    border-left: 4px solid #dc3545;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.message-info h3 {
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.message-info span {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 3px;
}

.message-date {
    color: var(--text-secondary);
    font-size: 12px;
}

.message-actions {
    display: flex;
    gap: 10px;
}

.message-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.approve-btn {
    background-color: #28a745;
    color: white;
}

.approve-btn:hover {
    background-color: #218838;
}

.reject-btn {
    background-color: #dc3545;
    color: white;
}

.reject-btn:hover {
    background-color: #c82333;
}

.message-content {
    color: var(--text-color);
    line-height: 1.5;
}

.success-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

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

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Reveal Animation */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Transitions */
section {
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

section:hover::before {
    transform: translateX(100%);
}

/* Section Title Animation */
.section-title h2,
.section-header h2 {
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

.section-title p,
.section-header p {
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    animation: slideUp 0.8s ease 0.2s forwards;
}

/* Card Hover Effects */
.service-card,
.team-member,
.info-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.service-card:hover,
.team-member:hover,
.info-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image Hover Animation */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Keyframes Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navigation Link Hover Effect */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section Animation */
.hero {
    position: relative;
    animation: fadeIn 1.5s ease;
}

.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

.hero-content p {
    animation-delay: 0.3s;
}

.profile-image img {
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

/* Contact Form Animation */
.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Submit Button Animation */
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    /* General Mobile Styles */
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile Navigation */
    .navbar {
        padding: 15px;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    /* Mobile Hero Section */
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 20px;
        text-align: center;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }

    /* Mobile Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .service-card {
        padding: 20px;
        margin: 10px 0;
    }

    /* Mobile Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .team-member {
        margin: 10px 0;
    }

    /* Mobile Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .contact-form {
        padding: 20px;
    }

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

    input, select, textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        padding: 12px !important;
        border-radius: 8px;
        -webkit-appearance: none; /* Removes iOS default styles */
        appearance: none;
    }

    /* Mobile-specific touch targets */
    button, 
    .nav-links a,
    .social-links a,
    .service-card,
    .team-member {
        min-height: 44px; /* iOS minimum touch target size */
        min-width: 44px;
        padding: 12px;
        touch-action: manipulation;
    }

    /* Improved touch feedback */
    button:active,
    .nav-links a:active,
    .social-links a:active {
        opacity: 0.7;
        transform: scale(0.98);
    }

    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
        text-align: center;
    }
}

/* Tablet Optimization */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Landscape */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        padding: 100px 0;
    }

    .nav-links.active {
        overflow-y: auto;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-image img,
    .team-member img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* iOS Safe Areas */
@supports (padding: max(0px)) {
    .navbar,
    .nav-links.active {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }

    .hero,
    .services,
    .team,
    .contact {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Remove hover effects on touch devices */
@media (hover: none) {
    .service-card:hover,
    .team-member:hover,
    .social-links a:hover {
        transform: none;
    }
}

.fas, .far, .fa-solid, .fa-regular {
    display: inline-block !important;
    font-family: "Font Awesome 6 Free" !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 103;
    position: relative;
}

.fa-brands {
    display: inline-block !important;
    font-family: "Font Awesome 6 Brands" !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 103;
    position: relative;
}

[class^="fa-"], [class*=" fa-"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 103;
    position: relative;
}

/* Servis ikonları için özel stil */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 103;
    position: relative;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* İletişim ikonları için özel stil */
.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 103;
    position: relative;
}

/* Ana menü animasyonları */
.nav-links li a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Servis kartları animasyonları */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Ekip kartları animasyonları */
.team-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.social-links {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-card:hover .social-links {
    transform: translateY(0);
    opacity: 1;
}

/* Spotify bölümü animasyonları */
.music-player {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.music-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lyrics-container {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lyrics-container.active {
    transform: translateY(0);
    opacity: 1;
}

/* İletişim formu animasyonları */
.contact-form input,
.contact-form textarea {
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateX(5px);
    border-color: var(--primary-color);
}

/* Buton animasyonları */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Sayfa yükleme animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll animasyonu */
@keyframes smoothScroll {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animation {
    opacity: 0;
    animation: smoothScroll 0.8s ease forwards;
}
