* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #ffbe0b);
    width: 0%;
    z-index: 10001;
    transition: width 0.1s linear;
}

body {
    font-family: 'Segoe UI', -apple-system, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: #0a0a0f;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 190, 11, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(100, 100, 255, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Grain */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Loader */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0a0a0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    overflow: visible;
}

.logo-path {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    animation: drawLogo 1.2s ease forwards;
    opacity: 0.2;
}

.logo-path-t {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
}

.logo-fill {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    animation: drawLogo 1s ease forwards 0.8s;
    filter: drop-shadow(0 0 12px rgba(230, 57, 70, 0.7)) drop-shadow(0 0 30px rgba(230, 57, 70, 0.3));
}

.logo-fill-t {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
}

@keyframes drawLogo {
    to { stroke-dashoffset: 0; }
}


.loader-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: #e63946;
    animation: loadBar 1.2s ease-in-out forwards;
}

@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0a0a0f;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.page-transition svg {
    width: 280px;
    height: 120px;
    overflow: visible;
}

.page-transition .trans-path {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    opacity: 0.2;
}

.page-transition .trans-path-t {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
}

.page-transition .trans-fill {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    filter: drop-shadow(0 0 12px rgba(230, 57, 70, 0.7)) drop-shadow(0 0 30px rgba(230, 57, 70, 0.3));
}

.page-transition .trans-fill-t {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
}

.page-transition.active .trans-path {
    animation: drawLogo 0.6s ease forwards;
}

.page-transition.active .trans-path-t {
    animation: drawLogo 0.6s ease forwards;
}

.page-transition.active .trans-fill {
    animation: drawLogo 0.5s ease forwards 0.3s;
}

.page-transition.active .trans-fill-t {
    animation: drawLogo 0.5s ease forwards 0.3s;
}

/* Custom Cursor */
.cursor {
    width: 8px; height: 8px;
    background: #e63946;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
}

.cursor-follower {
    width: 35px; height: 35px;
    border: 1px solid rgba(230, 57, 70, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s ease, width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-follower.hover {
    width: 55px; height: 55px;
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.06);
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 101;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.sound-toggle:hover { border-color: #e63946; }

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 5.5rem; right: 2rem;
    z-index: 101;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    color: #ccc;
}

.theme-toggle:hover { border-color: #e63946; color: #e63946; }

.theme-icon {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.theme-icon.sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-icon.moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Light mode icon states */
body.light .theme-icon.sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.light .theme-icon.moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.sound-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 16px;
}

.sound-bars span {
    width: 3px;
    background: #e63946;
    border-radius: 2px;
    animation: soundWave 0.8s ease-in-out infinite;
}

.sound-bars span:nth-child(1) { height: 6px; animation-delay: 0s; }
.sound-bars span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.sound-bars span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.sound-bars span:nth-child(4) { height: 14px; animation-delay: 0.3s; }

.sound-toggle.muted .sound-bars span {
    animation: none;
    height: 3px;
}

@keyframes soundWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem; left: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, #e63946, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s, padding 0.3s;
}

nav.scrolled {
    padding: 1rem 3rem;
    background: rgba(10, 10, 15, 0.95);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e63946;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #ccc;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    transition: border-color 0.3s, color 0.3s;
    font-family: inherit;
}

.lang-toggle:hover {
    border-color: #e63946;
    color: #e63946;
}

.nav-links a {
    text-decoration: none;
    color: #999;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #e63946;
    transition: width 0.3s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

#particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.hero-content { position: relative; z-index: 2; }

.greeting {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title { font-size: 1.5rem; color: #e63946; font-weight: 600; margin: 0.5rem 0; }
.tagline { font-size: 1.2rem; color: #777; margin-top: 1rem; max-width: 400px; }

.hero-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(230, 57, 70, 0.5);
    color: #e63946;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    background: rgba(230, 57, 70, 0.1);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.15);
}

.hero-shapes { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); }

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 350px; height: 350px;
    background: #e63946;
    opacity: 0.15;
    top: -150px; right: 0;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px; height: 250px;
    background: #ffbe0b;
    opacity: 0.1;
    top: -50px; right: 200px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px; height: 200px;
    background: #6366f1;
    opacity: 0.1;
    top: 80px; right: 50px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Marquee */
.marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-inner span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 2px;
    padding-right: 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 3rem;
    position: relative;
    z-index: 1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

/* Portfolio Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(230, 57, 70, 0.06);
    border-color: rgba(230, 57, 70, 0.3);
}

.gallery-item.large { grid-column: span 2; aspect-ratio: 2/1; }

/* Gallery Preview Content */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    opacity: 0.3;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.gallery-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.gallery-arrow {
    color: #e63946;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-arrow { transform: translateX(5px); }

/* Stats */
.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stat { text-align: center; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e63946;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Services */
#hizmetler { max-width: 1100px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #e63946, rgba(230, 57, 70, 0.1));
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #0a0a0f;
    border: 2px solid #e63946;
    transition: background 0.3s;
}

.timeline-item:hover .timeline-dot {
    background: #e63946;
}

.timeline-content {
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateX(4px);
}

.timeline-date {
    font-size: 0.8rem;
    color: #e63946;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0.4rem 0;
}

.timeline-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.timeline-tags span {
    padding: 0.25rem 0.7rem;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #e63946;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.blog-img {
    height: 140px;
    width: 100%;
}

.blog-body {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.blog-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-link {
    display: inline-block;
    margin-top: 1rem;
    color: #e63946;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: letter-spacing 0.3s;
}

.blog-link:hover { letter-spacing: 1px; }

.blog-all {
    text-align: center;
    margin-top: 2rem;
}

/* Skills Section */
.skills-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-group h4 {
    color: #e63946;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* About */
.about-content p {
    font-size: 1.1rem;
    max-width: 600px;
    color: #999;
    line-height: 1.8;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.skills span {
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.skills span:hover {
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.08);
    transform: translateY(-2px);
}

/* Contact */
#iletisim { text-align: center; }
#iletisim p { color: #777; font-size: 1.1rem; margin-bottom: 1.5rem; }

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 3rem auto 2rem;
    text-align: left;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0 0.5rem;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
    outline: none;
    resize: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e63946;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    font-size: 0.75rem;
    color: #e63946;
    letter-spacing: 1px;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e63946;
    transition: width 0.4s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 1px solid #e63946;
    color: #e63946;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.form-submit:hover {
    background: rgba(230, 57, 70, 0.1);
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.15);
}

.btn-loading,
.btn-success {
    display: none;
}

.form-submit.loading .btn-text { display: none; }
.form-submit.loading .btn-loading {
    display: flex;
    animation: spin 0.8s linear infinite;
}

.form-submit.success {
    border-color: #22c55e;
    color: #22c55e;
    pointer-events: none;
}
.form-submit.success .btn-text { display: none; }
.form-submit.success .btn-success { display: inline; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success ripple */
.form-submit.success::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.1);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    from { transform: scale(0.8); opacity: 1; }
    to { transform: scale(1.5); opacity: 0; }
}

.cta {
    display: inline-block;
    font-size: 1.3rem;
    color: #e63946;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #e63946;
    padding-bottom: 2px;
    transition: opacity 0.2s, letter-spacing 0.3s;
}

.cta:hover { opacity: 0.7; letter-spacing: 1px; }

.socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    text-decoration: none;
    color: #888;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
}

.socials a:hover { color: #fff; transform: translateY(-2px); }

/* Blog Page */
.blog-hero {
    padding-top: 8rem;
    text-align: center;
    max-width: 700px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
}

.blog-hero p {
    color: #777;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.blog-filter-btn {
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: #888;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.blog-filter-btn:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.blog-filter-btn.active {
    background: rgba(230,57,70,0.12);
    border-color: rgba(230,57,70,0.4);
    color: #e63946;
}

.blog-filter-btn[data-cat]:not([data-cat=""]).active {
    background: var(--fb);
    border-color: var(--fbd);
    color: var(--fc);
}

body.light .blog-filter-btn {
    border-color: rgba(0,0,0,0.12);
    color: #666;
}

body.light .blog-filter-btn:hover {
    border-color: rgba(0,0,0,0.3);
    color: #111;
}

.blog-page-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.blog-card-full {
    display: flex;
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.blog-card-full h2,
.blog-card-full p,
.blog-card-full span {
    text-decoration: none;
}

.blog-card-full:hover {
    transform: translateY(-3px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.blog-card-img {
    width: 250px;
    min-height: 200px;
    flex-shrink: 0;
}

.blog-card-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.blog-tag {
    padding: 0.2rem 0.7rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #e63946;
    font-weight: 500;
}

.blog-card-full h2 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.blog-card-full p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
}

.blog-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: letter-spacing 0.3s;
}

.blog-read-more:hover { letter-spacing: 1px; }

/* Blog Post */
.post-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.post {
    flex: 1;
    min-width: 0;
    max-width: 750px;
    padding: 0;
    position: relative;
    z-index: 1;
    transition: max-width 0.4s ease;
}

.post.wide {
    max-width: 1100px;
}

.post-width-toggle {
    margin-left: auto;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-width-toggle:hover {
    border-color: #e63946;
    color: #e63946;
}

/* Post Sidebar */
.post-sidebar {
    width: 260px;
    flex-shrink: 0;
    padding-top: 9rem;
    position: sticky;
    top: 5rem;
    height: fit-content;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
}

.post-sidebar h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-post {
    display: flex;
    gap: 0.7rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
    transition: opacity 0.2s;
}

.sidebar-post:hover { opacity: 0.8; }

.sidebar-post-img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.sidebar-post-cat {
    font-size: 0.68rem;
    color: #e63946;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-post-info h5 {
    color: #ccc;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-post-date {
    color: #555;
    font-size: 0.72rem;
}

/* Post Feedback */
.post-feedback {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    text-align: center;
}

.feedback-title {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #aaa;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.feedback-btn:hover {
    border-color: #e63946;
    color: #fff;
    background: rgba(230, 57, 70, 0.06);
}

.feedback-btn.active {
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

.feedback-icon { font-size: 1.1rem; }

.feedback-count {
    background: rgba(255,255,255,0.06);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #888;
}

.feedback-thanks {
    color: #22c55e;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

/* Light mode sidebar & feedback */
body.light .post-sidebar h4 { color: #111; border-bottom-color: rgba(0,0,0,0.06); }
body.light .sidebar-post { border-bottom-color: rgba(0,0,0,0.04); }
body.light .sidebar-post-info h5 { color: #333; }
body.light .post-feedback { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light .feedback-title { color: #555; }
body.light .feedback-btn { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.1); color: #555; }
body.light .feedback-btn:hover { border-color: #e63946; color: #e63946; }
body.light .feedback-btn.active { border-color: #e63946; background: rgba(230,57,70,0.06); color: #e63946; }

.comments-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.comments-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comments-title span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Comment Form */
.comment-form {
    background: linear-gradient(145deg, #1a0a1e, #0f1a2e);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #e63946;
}

.comment-form textarea {
    resize: vertical;
    margin-bottom: 0.8rem;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder { color: #555; }

.comment-submit {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.comment-submit:hover { opacity: 0.85; }
.comment-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.reply-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0.8rem;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #e63946;
}

.reply-indicator button {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
}

.reply-indicator button:hover { color: #fff; }

/* Comment Items */
.comment {
    padding: 1.2rem;
    background: linear-gradient(145deg, #1f0a0c, #1a0f14);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(230, 57, 70, 0.12);
}

.comment:last-child { margin-bottom: 0; }

.comment-reply {
    margin-left: 2rem;
    padding-left: 1.2rem;
    border-left: 2px solid rgba(230, 57, 70, 0.2);
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.comment-author {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.comment-date {
    color: #555;
    font-size: 0.78rem;
}

.comment-body {
    color: #bbb;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.comment-reply-btn:hover { color: #e63946; }

.comment-hidden-msg {
    color: #888 !important;
    font-style: italic;
    opacity: 0.7;
}

.comment-new {
    animation: commentFadeIn 0.4s ease;
}

@keyframes commentFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Light mode comments */
body.light .comment-form {
    background: linear-gradient(145deg, #fff5f5, #f0f0ff);
    border-color: rgba(230, 57, 70, 0.12);
}

body.light .comment-form input,
body.light .comment-form textarea {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.08);
    color: #111;
}

body.light .comment-author { color: #111; }
body.light .comment-body { color: #555; }
body.light .comment {
    background: linear-gradient(145deg, #fff0f0, #fff5f3);
    border-color: rgba(230, 57, 70, 0.12);
}
body.light .comment-reply { border-left-color: rgba(230, 57, 70, 0.3); }
body.light .comments-title { color: #111; }

.post-header {
    padding-top: 8rem;
    margin-bottom: 2rem;
}

.post-back {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.post-back:hover { color: #e63946; }

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
}

.post-read-time {
    color: #555;
    font-size: 0.8rem;
}

.post h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.post-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.post-cover {
    width: 100%;
    border-radius: 12px;
    margin-top: 2rem;
    background: #141418;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.post-cover.collapsed {
    aspect-ratio: 16/7;
}

.post-cover.expanded {
    aspect-ratio: var(--cover-ratio);
}

.post-cover-toggle {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

.post-cover:hover .post-cover-toggle {
    opacity: 1;
    pointer-events: all;
}

.post-content {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.9;
}

.post-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: block;
}

.post-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 2.5rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #999;
}

.post-content ul li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 3px solid #e63946;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(230, 57, 70, 0.04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #ccc;
    overflow-x: auto;
    word-break: break-word;
}

.post-content blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    font-style: normal;
}

.post-content pre {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
}

.post-content code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.88em;
    background: rgba(255,255,255,0.06);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    word-break: break-word;
}

.post-content pre code {
    background: none;
    padding: 0;
    font-size: inherit;
    white-space: pre-wrap;
    word-break: break-all;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.post-content table th,
.post-content table td {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.6rem 1rem;
    text-align: left;
}

.post-content table th {
    background: rgba(230,57,70,0.12);
    color: #fff;
    font-weight: 600;
}

.post-content table tr:nth-child(even) td {
    background: rgba(255,255,255,0.03);
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share span { color: #666; font-size: 0.9rem; }

.post-share a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.post-share a:hover { color: #e63946; }

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-links a.active { color: #e63946; }

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #444;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

/* Light Mode */
body.light {
    background: #f5f5f7;
    background-image: none;
    color: #1a1a1a;
}

body.light::before { opacity: 0; }

body.light nav {
    background: rgba(245, 245, 247, 0.9);
    border-bottom-color: rgba(0,0,0,0.06);
}

body.light .nav-links a { color: #555; }
body.light .nav-links a:hover { color: #111; }
body.light .logo { color: #e63946; }

body.light .hero h1 {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.light .greeting { color: #999; }
body.light .tagline { color: #666; }
body.light .title { color: #e63946; }

body.light h2 { color: #111; }

body.light .service-card,
body.light .blog-card,
body.light .gallery-item {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}

body.light .service-card:hover,
body.light .blog-card:hover,
body.light .gallery-item:hover {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

body.light .service-card h3 { color: #111; }
body.light .service-card p { color: #666; }
body.light .blog-card h3 { color: #111; }
body.light .blog-card p { color: #666; }
body.light .blog-date { color: #999; }

body.light .about-content p { color: #555; }
body.light .skills span {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
    color: #333;
}

body.light .skills span:hover {
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.06);
}

body.light .stat-label { color: #888; }
body.light .stats { border-top-color: rgba(0,0,0,0.06); }

body.light #iletisim p { color: #666; }
body.light .form-group input,
body.light .form-group textarea {
    color: #111;
    border-bottom-color: rgba(0,0,0,0.1);
}

body.light .form-group label { color: #999; }
body.light .socials a { color: #666; }
body.light .socials a:hover { color: #111; }

body.light footer { color: #999; border-top-color: rgba(0,0,0,0.06); }

body.light .marquee-inner span { color: #ccc; }

body.light .scroll-indicator span { color: #bbb; }
body.light .scroll-line { background: linear-gradient(to bottom, #e63946, transparent); }

body.light .sound-toggle,
body.light .theme-toggle {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
    color: #555;
}

body.light .sound-toggle:hover,
body.light .theme-toggle:hover { border-color: #e63946; color: #e63946; }

body.light .sound-bars span { background: #e63946; }

body.light .gallery-overlay { background: rgba(255,255,255,0.85); }
body.light .gallery-title { color: #111; }
body.light .gallery-desc { color: #666; }

body.light .lang-toggle { border-color: rgba(0,0,0,0.15); color: #555; }
body.light .lang-toggle:hover { border-color: #e63946; color: #e63946; }

body.light .hamburger span { background: #111; }

body.light .cookie-notice { background: #fff; border-top-color: rgba(0,0,0,0.06); }
body.light .cookie-notice p { color: #555; }

body.light .back-to-top {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
    color: #555;
}
body.light .back-to-top:hover { border-color: #e63946; color: #e63946; }

body.light .progress-bar { background: linear-gradient(90deg, #e63946, #ff6b6b); }

/* Light mode - Blog page */
body.light .blog-hero h1 { color: #111; }
body.light .blog-hero p { color: #666; }
body.light .blog-card-full {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}
body.light .blog-card-full:hover {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
body.light .blog-card-full h2 { color: #111; }
body.light .blog-card-full p { color: #666; }

/* Light mode - Post page */
body.light .post h1 { color: #111; }
body.light .post-subtitle { color: #666; }
body.light .post-content { color: #333; }
body.light .post-content h2 { color: #111; }
body.light .post-content blockquote { background: rgba(230,57,70,0.04); color: #444; }
body.light .post-content ul { color: #555; }
body.light .post-back { color: #666; }
body.light .post-width-toggle { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: #555; }
body.light .post-width-toggle:hover { border-color: #e63946; color: #e63946; }
body.light .post-content pre { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
body.light .post-content code { background: rgba(0,0,0,0.06); color: #c0392b; }
body.light .post-content table th,
body.light .post-content table td { border-color: rgba(0,0,0,0.12); }
body.light .post-content table th { background: rgba(230,57,70,0.08); color: #111; }
body.light .post-content table tr:nth-child(even) td { background: rgba(0,0,0,0.03); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 5rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: #e63946;
    color: #e63946;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #14141a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 9000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.visible {
    transform: translateY(0);
}

.cookie-notice p {
    color: #999;
    font-size: 0.9rem;
}

.cookie-btn {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

/* Image Preview (admin) */
.image-preview {
    margin-top: 0.5rem;
}

.image-preview img {
    max-width: 200px;
    border-radius: 8px;
}

.file-input {
    padding: 0.5rem 0 !important;
    border: none !important;
}

/* Project Detail Page */
.project-hero {
    padding-top: 8rem;
    max-width: 900px;
}

.project-category {
    color: #e63946;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.project-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.project-desc {
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.8;
}

.project-meta {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.project-meta div { display: flex; flex-direction: column; gap: 0.3rem; }
.project-meta strong { color: #555; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.project-meta span { color: #ddd; }

.project-gallery {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.project-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #141418, #1a1a22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image .placeholder { color: #555; font-size: 1.1rem; }

.project-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.project-nav {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
}

.project-nav a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.project-nav a:hover { color: #e63946; }

/* Responsive */
@media (max-width: 768px) {
    html { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
    nav { padding: 1rem 1.5rem; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%;
        height: 100vh;
        background: #0a0a0f;
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid rgba(255,255,255,0.06);
        transition: right 0.3s ease;
        z-index: 99;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    .hamburger { display: flex; }
    .lang-toggle { order: -1; }
    .hero { padding: 6rem 1.5rem; }
    .hero-shapes { opacity: 0.5; right: -20%; }
    .scroll-indicator { display: none; }
    section { padding: 3rem 1.5rem; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: span 2; }
    .blog-card-full { flex-direction: column; }
    .blog-card-img { width: 100%; min-height: 150px; }
    .blog-page-grid { padding: 1.5rem; }
    .post-layout { flex-direction: column; padding: 0 1.5rem; }
    .post-sidebar { display: none; }
    .comments-section { margin-top: 2rem; padding-top: 2rem; }
    .feedback-buttons { gap: 0.5rem; }
    .feedback-btn { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
    .post-cover { height: 180px; }
    .comment-form-row { grid-template-columns: 1fr; }
    .comment-reply { margin-left: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .skills-section { gap: 1rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 1.5rem; }
    .stats { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .project-meta { flex-direction: column; gap: 1rem; }
    .project-image-grid { grid-template-columns: 1fr; }
    .project-gallery { padding: 1.5rem; }
    .sound-toggle { bottom: 1rem; right: 1rem; }
    .whatsapp-btn { bottom: 1rem; left: 1rem; width: 40px; height: 40px; }
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.post-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(167,139,250,0.08);
    border: 1px solid rgba(167,139,250,0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #a78bfa;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.post-tag:hover {
    background: rgba(167,139,250,0.15);
    border-color: rgba(167,139,250,0.5);
}

body.light .post-tags { border-top-color: rgba(0,0,0,0.06); }
body.light .post-tag {
    background: rgba(124,58,237,0.06);
    border-color: rgba(124,58,237,0.2);
    color: #7c3aed;
}
