/* ==========================================================================
   KurumsalWebCMS Premium Creative Dark Theme
   Author: Antigravity
   Aesthetics: Deep Space, Glassmorphism, Neon Glow & Micro-animations
   ========================================================================== */

/* Google Fonts Import is handled in Index.cshtml */

:root {
    --bg-primary: #030303;
    --bg-secondary: #09090b;
    --bg-surface: rgba(18, 18, 24, 0.65);
    --bg-surface-hover: rgba(28, 28, 36, 0.8);
    --accent-primary: #ec4899;       /* Cyber Magenta */
    --accent-primary-rgb: 236, 72, 153;
    --accent-secondary: #f59e0b;     /* Warm Amber */
    --accent-secondary-rgb: 245, 158, 11;
    
    --text-primary: #f8fafc;          /* High contrast off-white */
    --text-secondary: #cbd5e1;        /* Muted light gray */
    --text-muted: #64748b;            /* Cool slate */
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(236, 72, 153, 0.45);
    --border-glow: rgba(245, 158, 11, 0.45);
    
    --glow-shadow: 0 0 25px rgba(236, 72, 153, 0.25);
    --glow-shadow-cyan: 0 0 25px rgba(245, 158, 11, 0.25);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px; /* Büyütülmüş ana yazı boyutu */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 90px; /* Space for cookie banner */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
}

/* ==========================================================================
   Background Ambient Glowing Orbs
   ========================================================================== */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0c0812 0%, var(--bg-primary) 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    mix-blend-mode: screen;
}

.orb-violet {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, rgba(236, 72, 153, 0.02) 70%);
    top: -10%;
    left: -10%;
    animation: floatOrb 40s infinite alternate ease-in-out;
}

.orb-cyan {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.02) 70%);
    bottom: -15%;
    right: -10%;
    animation: floatOrbSecond 50s infinite alternate ease-in-out;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(8%, 5%) scale(1.15);
    }
    100% {
        transform: translate(-5%, 10%) scale(0.9);
    }
}

@keyframes floatOrbSecond {
    0% {
        transform: translate(0, 0) scale(1.1);
    }
    50% {
        transform: translate(-10%, -8%) scale(0.9);
    }
    100% {
        transform: translate(5%, -5%) scale(1.2);
    }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Floating Navigation Bar Glass Pill */
.navbar {
    display: flex;
    background: rgba(15, 20, 39, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Center navbar */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px; /* Menü yazılarını büyüttük */
    letter-spacing: 1.5px;
    padding: 12px 24px; /* Buton içi boşluğu arttırdık */
    border-radius: 30px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: var(--glow-shadow);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo placement inside header */
.logo-link {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-link:hover {
    transform: translateY(-50%) scale(1.05);
    filter: drop-shadow(0 0 8px var(--accent-secondary));
}

.top-logo {
    height: 52px; /* Logo boyutunu büyüttük */
    width: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   Page Layout & Common Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px; /* Genişliği genişlettik */
    padding: 40px 20px;
    text-align: center;
}

.content-section {
    display: none;
    width: 100%;
    animation: fadeInUp 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* Section Title */
.section-title {
    font-size: 38px; /* Başlığı büyüttük */
    font-weight: 850;
    letter-spacing: 6px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.divider {
    width: 80px; /* Çizgi genişliğini büyüttük */
    height: 4px; /* Çizgi kalınlığını büyüttük */
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    margin: 0 auto 60px auto;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

/* Premium Glass Card Definition */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 24px; /* Köşe yuvarlaklığını arttırdık */
    padding: 50px; /* İç boşluğu büyüttük */
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
    margin-bottom: 40px;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow), 0 15px 45px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.avatar-container {
    background: var(--bg-surface);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
}

.avatar-container:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow), 0 15px 45px rgba(0, 0, 0, 0.4);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.avatar-container:hover .profile-image {
    transform: scale(1.04);
}

@media screen and (max-width: 850px) {
    .about-layout {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .avatar-container {
        width: 260px;
        max-width: 100%;
    }
}

.about-card {
    margin-bottom: 0;
}

.about-card .card-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--accent-primary);
    padding-left: 18px;
    line-height: 1.4;
    word-break: break-word;
}

.about-card .about-content {
    font-size: 19px; /* Hakkımda metnini büyüttük */
    color: var(--text-secondary);
    line-height: 1.9;
    white-space: pre-line;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
/* ==========================================================================
   BLOG GRID SECTION & GPU 3D TILT
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
}

.blog-grid-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.blog-grid-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale3d(1.02, 1.02, 1.02);
}

.blog-grid-image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.blog-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-grid-card:hover .blog-grid-image {
    transform: scale(1.06);
}

.blog-grid-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-grid-date {
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-grid-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.blog-grid-card:hover .blog-grid-title {
    color: var(--accent-secondary);
}

.blog-grid-summary {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-grid-more-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-top: auto;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.blog-grid-card:hover .blog-grid-more-link {
    color: #ffffff;
    padding-left: 5px;
}

/* Typewriter & Skills Style */
.typing-title {
    display: inline;
    border-right: 3px solid var(--accent-secondary);
    animation: blinkCursor 0.75s step-end infinite;
    word-break: break-word;
}

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-secondary); }
}

.skills-section {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.skills-title {
    font-size: 16px;
    font-weight: 750;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.skill-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition-smooth);
}

.skill-badge:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
    transform: translateY(-2px);
}

.skill-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.skill-line {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* Interactive Glowing Orb */
.orb-interactive {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, rgba(245, 158, 11, 0) 70%);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
    filter: blur(80px);
    transition: opacity 0.3s ease;
    opacity: 0;
}

/* Premium Glassmorphism Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-modal.active-modal {
    display: flex;
}

.blog-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 17, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: fadeIn 0.4s ease forwards;
}

.blog-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    max-height: 85vh;
    background: rgba(15, 20, 39, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    z-index: 1002;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    animation: modalZoom 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-primary);
}

.blog-modal-wrapper::-webkit-scrollbar {
    width: 6px;
}

.blog-modal-wrapper::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 0 28px 28px 0;
}

.blog-modal-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.blog-modal-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
    transform: rotate(90deg);
}

.blog-modal-body {
    padding: 40px;
    text-align: left;
}

#modal-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    max-height: 400px;
}

#modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-date {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.modal-title {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.modal-full-content {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.85;
    white-space: pre-line;
    margin-bottom: 30px;
}

.modal-reactions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Modal Comments Section */
.modal-comments-section {
    margin-top: 40px;
}

.modal-comments-heading {
    font-size: 18px;
    font-weight: 750;
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.modal-comments-list {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 30px;
}

.comment-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-left: 3px solid var(--accent-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.01);
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-author {
    font-size: 13.5px;
    color: #ffffff;
    font-weight: 600;
}

.comment-time {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modal Form */
.modal-comment-form {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.modal-comment-form h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.25);
    background: rgba(0, 0, 0, 0.35);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    box-shadow: var(--glow-shadow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.comment-status-msg {
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 12px;
    display: none;
}

.status-success {
    color: #34d399;
}

.status-error {
    color: #f87171;
}

/* Project Grid Redesign */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-secondary);
    box-shadow: var(--glow-shadow-cyan);
}

.project-card .project-link {
    margin-top: auto;
    display: inline-block;
}

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

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

/* ==========================================================================
   REFERENCES SECTION
   ========================================================================== */
.references-wrapper .ref-intro {
    font-size: 19px; /* Referans giriş metnini büyüttük */
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 35px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-secondary);
    box-shadow: var(--glow-shadow-cyan);
    transform: scale(1.01);
}

.project-title {
    font-size: 23px; /* Proje başlığını büyüttük */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 18px; /* Proje açıklamasını büyüttük */
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.project-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px; /* Proje linkini büyüttük */
    transition: var(--transition-smooth);
}

.project-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--accent-secondary);
}

/* Explore More Block */
.explore-more-section {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.explore-title {
    font-size: 23px; /* Keşfet başlığını büyüttük */
    color: #ffffff;
    margin-bottom: 10px;
}

.explore-desc {
    font-size: 18px; /* Keşfet açıklamasını büyüttük */
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.explore-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px; /* Keşfet linkini büyüttük */
    transition: var(--transition-smooth);
}

.explore-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--accent-primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px;
}

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

.contact-item {
    font-size: 20px; /* İletişim bilgisini büyüttük */
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-item strong {
    color: #ffffff;
    font-family: 'Fira Code', monospace;
    font-size: 16px; /* Etiket boyutunu büyüttük */
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.social-btn {
    padding: 14px 32px; /* Sosyal butonları büyüttük */
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16.5px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.linkedin-btn {
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.3);
    color: #00a0dc;
}

.linkedin-btn:hover {
    background: #0077b5;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
    transform: translateY(-2px);
}

.github-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color);
    color: #f3f4f6;
}

.github-btn:hover {
    background: #24292e;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Empty State Message */
.empty-message {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media screen and (max-width: 850px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .logo-link {
        position: static;
        transform: none;
    }
    
    .logo-link:hover {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 600px) {
    .navbar {
        border-radius: 20px;
        padding: 6px;
        width: 100%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 11px;
        padding: 8px 12px;
        letter-spacing: 0.5px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
    }
    
    .social-btn {
        text-align: center;
        width: 100%;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 20px auto;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.admin-access-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.admin-access-link:hover {
    color: var(--accent-primary);
    border-color: var(--border-hover);
    background: rgba(236, 72, 153, 0.05);
    box-shadow: var(--glow-shadow);
}

@media screen and (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   SOMEE.COM AD BLOCKER - SHIELD
   ========================================================================== */
center a[href*="somee.com"],
center {
    display: none !important;
}

div[style*="z-index: 2147483647"],
div[style*="z-index: 9999999"],
div[style*="position: fixed"][style*="bottom: 0"],
div[style*="position: absolute"][style*="bottom: 0"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}
