/* 
   Ceyhun Bora Işık - Kişisel Portföy CSS
   Tema: Siberpunk/Modern Karanlık ve Dinamik Neon Vurgular
*/

:root {
    /* Dinamik HSL Tabanlı Neon Rengi Değişkenleri */
    --primary-hue: 185;       /* Varsayılan: Neon Mavi (Cyan) */
    --primary-sat: 100%;
    --primary-light: 50%;
    
    --neon-primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light));
    --neon-hover: hsl(var(--primary-hue), var(--primary-sat), calc(var(--primary-light) - 5%));
    --neon-glow: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.35);
    
    /* Ana Koyu Renkler */
    --bg-color: #030712;             /* Çok Koyu Gece Siyahı */
    --surface-color: #0b0f19;        /* Kart Arka Planı */
    --surface-light: rgba(17, 24, 39, 0.45); /* Glassmorphism Yarı Saydam */
    
    /* Metin Renkleri */
    --text-main: #f3f4f6;            /* Pürüzsüz Açık Beyazımsı Metin */
    --text-muted: #9ca3af;           /* Yarı Saydam Gri Metin */
    --border-glass: rgba(255, 255, 255, 0.06); /* İnce Cam Kenarlığı */
    --neon-border: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.15);
    
    /* Yazı Tipleri */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Sıfırlama (Reset) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    
    /* Noktalı Grid Deseni */
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Seçim Rengi */
::selection {
    background: var(--neon-primary);
    color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

/* Ortak Yardımcı Sınıflar */
.highlight {
    color: var(--neon-primary);
    text-shadow: 0 0 10px var(--neon-glow);
}

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

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

/* Arka Plan Glow Efektleri */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-slow);
}
.bg-glow-1 {
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: var(--neon-primary);
}
.bg-glow-2 {
    bottom: 25%;
    right: -150px;
    width: 700px;
    height: 700px;
    background: #a855f7; /* Kozmik Mor */
}
.bg-glow-3 {
    top: 50%;
    left: -100px;
    width: 500px;
    height: 500px;
    background: var(--neon-primary);
}

/* Özel İmleç Takipçisi */
.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 15px var(--neon-glow);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: background 0.3s ease;
}

/* Hover Sırasında İmleç Durumu */
.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.05);
    border-color: var(--neon-primary);
}

/* Glassmorphism Kart Sınıfları */
.glass-card {
    background: var(--surface-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}
.glass-card:hover {
    border-color: var(--neon-border);
    box-shadow: 0 10px 40px -15px var(--neon-glow);
}

/* 3D Eğilme Efekti */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--neon-primary);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--neon-glow);
}
.btn-primary:hover {
    background: var(--neon-hover);
    box-shadow: 0 0 30px var(--neon-glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-primary);
    border: 1px solid var(--neon-primary);
}
.btn-secondary:hover {
    background: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.08);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* Renk Switcher Widget */
.theme-switcher-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.theme-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid var(--border-glass);
    color: var(--neon-primary);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}
.theme-btn:hover {
    border-color: var(--neon-primary);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: rotate(45deg) scale(1.05);
}

.theme-menu {
    background: var(--surface-color);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    gap: 10px;
    animation: scaleIn 0.3s ease forwards;
}

.theme-menu.active {
    display: flex;
}

.theme-menu h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.theme-colors {
    display: flex;
    gap: 10px;
}

.color-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.color-dot:hover {
    transform: scale(1.2);
}
.color-dot.active {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Navigasyon Barı */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    transition: padding 0.3s ease, background 0.3s ease;
    padding: 25px 0;
}
.navbar.scrolled {
    padding: 15px 0;
    background: rgba(3, 7, 18, 0.85);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.logo-text {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--neon-primary);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--neon-primary);
}

.blog-link {
    color: #f59e0b; /* Sıcak turuncu/sarı */
}
.blog-link i {
    margin-right: 4px;
}
.blog-link::after {
    background-color: #f59e0b;
}
.blog-link:hover {
    color: #fbbf24;
}

.btn-contact {
    border: 1px solid var(--neon-primary);
    padding: 8px 20px;
    border-radius: 6px;
    color: var(--neon-primary);
}
.btn-contact::after {
    display: none;
}
.btn-contact:hover {
    background: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.08);
    box-shadow: 0 0 15px var(--neon-glow);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neon-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.greeting {
    color: var(--neon-primary);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.glitch-text {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

.role {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 30px;
    min-height: 50px;
}

.cursor-blink {
    color: var(--neon-primary);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Dekoratif Kod Kartı */
.hero-visual {
    position: relative;
    padding: 20px;
}
.hero-card {
    padding: 0;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero-card:hover {
    transform: rotate(0deg) scale(1.03);
}

.code-header {
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-glass);
}
.code-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.code-content {
    padding: 30px;
    background: rgba(3, 7, 18, 0.3);
}
.code-content pre {
    margin: 0;
}
.code-content code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #e5e7eb;
}

.syntax-property { color: #f43f5e; }
.syntax-string { color: #10b981; }
.syntax-keyword { color: #a855f7; }
.syntax-function { color: #6366f1; }

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* Bölüm Başlıkları */
.section-header {
    margin-bottom: 60px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}
.title-line {
    height: 4px;
    width: 80px;
    background: var(--neon-primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-glow);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Hakkımda Bölümü */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}
.skill-tag {
    background: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.03);
    border: 1px solid var(--border-glass);
    padding: 8px 18px;
    border-radius: 25px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.skill-tag:hover {
    background: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.12);
    border-color: var(--neon-primary);
    color: var(--neon-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--neon-glow);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-box {
    padding: 35px 20px;
    text-align: center;
    background: var(--surface-light);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    transition: var(--transition);
}
.stat-box:hover {
    border-color: var(--neon-border);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -10px var(--neon-glow);
}
.stat-box i {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}
.stat-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Portfolyo Bölümü */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
}

.portfolio-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-placeholder {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}
.card-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.45);
    transition: var(--transition);
}
.portfolio-card:hover .card-img-placeholder::after {
    background: transparent;
}
.portfolio-card:hover .card-img-placeholder i {
    transform: scale(1.15);
}
.card-img-placeholder i {
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-primary);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}
.card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.project-link {
    align-self: flex-start;
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.project-link:hover {
    color: var(--neon-primary);
    text-shadow: 0 0 10px var(--neon-glow);
}

/* Anonim Mesaj Duvarı */
.wall-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.wall-form-card {
    padding: 35px;
}
.wall-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group textarea {
    height: 120px;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-primary);
    box-shadow: 0 0 12px var(--neon-glow);
    background: rgba(3, 7, 18, 0.6);
}

.char-count {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.note-color-selectors {
    display: flex;
    gap: 12px;
}
.color-sel {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.color-sel:hover {
    transform: scale(1.15);
}
.color-sel.active {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.wall-notes-wrapper {
    background: var(--surface-light);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    height: 520px;
    display: flex;
    flex-direction: column;
}

.wall-notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.wall-notes-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}
.btn-clear-notes {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-clear-notes:hover {
    color: #ef4444;
}

.wall-grid {
    flex-grow: 1;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    align-content: start;
    padding-right: 10px;
}

/* Özel Scrollbar */
.wall-notes-wrapper ::-webkit-scrollbar {
    width: 6px;
}
.wall-notes-wrapper ::-webkit-scrollbar-track {
    background: transparent;
}
.wall-notes-wrapper ::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 3px;
}
.wall-notes-wrapper ::-webkit-scrollbar-thumb:hover {
    background: var(--neon-border);
}

.wall-empty-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Mesaj Kartı (Not) Tasarımları */
.wall-note-card {
    padding: 20px;
    border-radius: 12px;
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    min-height: 150px;
    animation: noteAppear 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes noteAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wall-note-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    flex-grow: 1;
    word-break: break-word;
}

.wall-note-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.wall-note-author {
    font-weight: 600;
}

/* Not Renkleri */
.note-blue {
    border-color: rgba(0, 243, 255, 0.25);
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.03), 0 5px 15px rgba(0, 0, 0, 0.2);
}
.note-blue .wall-note-author { color: #00f3ff; }

.note-pink {
    border-color: rgba(255, 0, 127, 0.25);
    box-shadow: inset 0 0 10px rgba(255, 0, 127, 0.03), 0 5px 15px rgba(0, 0, 0, 0.2);
}
.note-pink .wall-note-author { color: #ff007f; }

.note-green {
    border-color: rgba(57, 255, 20, 0.25);
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.03), 0 5px 15px rgba(0, 0, 0, 0.2);
}
.note-green .wall-note-author { color: #39ff14; }

.note-orange {
    border-color: rgba(255, 94, 0, 0.25);
    box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.2);
}
.note-orange .wall-note-author { color: #ff5e00; }

.note-purple {
    border-color: rgba(157, 0, 255, 0.25);
    box-shadow: inset 0 0 10px rgba(157, 0, 255, 0.03), 0 5px 15px rgba(0, 0, 0, 0.2);
}
.note-purple .wall-note-author { color: #9d00ff; }


/* İletişim Bölümü */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    padding: 45px;
    height: 100%;
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.contact-info-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neon-primary);
    transition: var(--transition);
}
.icon-box:hover {
    background: var(--neon-primary);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-2px);
}

.info-text {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-text a {
    font-size: 1.15rem;
    font-weight: 500;
}
.info-text a:hover {
    color: var(--neon-primary);
}

.social-links-container h4 {
    margin-bottom: 20px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.15rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--neon-primary);
    color: var(--bg-color);
    border-color: var(--neon-primary);
    box-shadow: 0 0 15px var(--neon-glow);
    transform: translateY(-5px);
}

.contact-form-card {
    padding: 45px;
}
.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.form-status {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}
.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Footer */
footer {
    background: rgba(3, 7, 18, 0.9);
    border-top: 1px solid var(--border-glass);
    padding: 40px 0;
    margin-top: 80px;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}
.footer-container p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.made-with {
    font-size: 0.85rem;
}

/* Reveal Scroll Animasyonları */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    visibility: visible;
}
.fade-left { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.fade-up { transform: translateY(40px); }
.slide-up { transform: translateY(80px); }
.scale-up { transform: scale(0.95); }

.reveal.active.fade-left,
.reveal.active.fade-right,
.reveal.active.fade-up,
.reveal.active.slide-up {
    transform: translate(0);
}
.reveal.active.scale-up {
    transform: scale(1);
}

/* Responsive Düzenler */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 30px;
    }
    .hero-btns {
        justify-content: center;
        margin-bottom: 40px;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        transform: none !important;
    }
    .hero-card {
        transform: none !important;
    }
    .glitch-text {
        font-size: 3.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-text {
        text-align: center;
    }
    .skills-container {
        justify-content: center;
    }
    
    .wall-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobil İmleci Gizle */
    .cursor-follower,
    .cursor-dot {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    .glitch-text {
        font-size: 3rem;
    }
    .role {
        font-size: 1.6rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        transition: var(--transition-slow);
        border-left: 1px solid var(--border-glass);
        box-shadow: -10px 0 30px rgba(0,0,0,0.6);
        gap: 25px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .contact-form-card,
    .wall-form-card {
        padding: 30px 20px;
    }
}
