* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.page-loaded {
    opacity: 1;
}

/* Sayfa Geçiş Efekti - Sadece Fade */
body.page-transitioning {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Yükleme Ekranı */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: #0099ff;
    animation-delay: -0.5s;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: #ff0099;
    animation-delay: -1s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Sayfa İçerik Animasyonları */
.container > section {
    animation: fadeInContent 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation animasyonu */
nav {
    animation: slideDown 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer animasyonu */
footer {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Custom Cursor - DÜZELTME: Daha akışkan */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

/* 3D Background */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Glowing Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float-orb 20s infinite ease-in-out;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00ff88, transparent);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0099ff, transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff0099, transparent);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -100px) scale(1.1); }
    50% { transform: translate(-50px, 100px) scale(0.9); }
    75% { transform: translate(150px, 50px) scale(1.05); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #0099ff);
    transition: width 0.3s, left 0.3s;
}

nav a:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

nav a:hover::before {
    width: 80%;
    left: 10%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #0099ff, #ff0099, #00ff88);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s forwards 0.3s, gradient-shift 5s ease infinite;
    text-align: center;
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
    transform: translateY(30px);
}

.highlight {
    color: #00ff88;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff88;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.highlight:hover::after {
    transform: scaleX(1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s forwards 1s, bounce 2s infinite 1.5s;
}

.scroll-indicator::before {
    content: '';
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #00ff88);
    display: block;
    margin: 0 auto 10px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(20px); }
}

/* Section */
section {
    min-height: 100vh;
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 255, 136, 0.3);
    z-index: -1;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(3px, 3px); }
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.quick-link-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #00ff88;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.quick-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.quick-link-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.quick-link-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 153, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: #00ff88;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-card h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.project-card:hover::after {
    width: 500px;
    height: 500px;
}

.project-card:hover {
    transform: scale(1.05);
    border-color: #00ff88;
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.4);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.project-card:hover .project-icon {
    transform: scale(1.2) rotate(10deg);
}

.project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.project-card:hover h3 {
    color: #00ff88;
    transform: translateX(10px);
}

.project-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.tag:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-3px);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper, .contact-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form-wrapper h3, .contact-info h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #00ff88, #0099ff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    border-color: #00ff88;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
}

.location-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-info h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location-info p {
    color: rgba(255, 255, 255, 0.7);
}

/* Alerts */
.alert {
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    animation: slideIn 0.5s;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
}

.alert-error {
    background: rgba(255, 0, 153, 0.1);
    border: 1px solid #ff0099;
    color: #ff0099;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.floating-shape {
    position: fixed;
    pointer-events: none;
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    border: 2px solid #00ff88;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border: 2px solid #0099ff;
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    border: 2px solid #ff0099;
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -50px) rotate(90deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
    75% { transform: translate(70px, 20px) rotate(270deg); }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
    }
    
    nav ul {
        gap: 1rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Cursor'u mobilde gizle */
    .cursor, .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
    
    /* Hero */
    .hero h1 {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    
    .glitch-text {
        font-size: clamp(1rem, 4vw, 1.3rem);
        padding: 0 1rem;
    }
    
    /* Section */
    section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 2rem;
    }
    
    /* Grids */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quick-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cards */
    .info-card, .skill-card, .project-card, .quick-link-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper, .contact-info {
        padding: 2rem 1.5rem;
    }
    
    /* Orbs - Mobilde küçült */
    .orb-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
        bottom: -125px;
        right: -125px;
    }
    
    .orb-3 {
        width: 200px;
        height: 200px;
    }
    
    /* Floating shapes - Mobilde gizle */
    .floating-shape {
        display: none;
    }
    
    /* Footer */
    footer {
        padding: 2rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Navigation - Çok küçük ekranlar */
    nav {
        padding: 0.8rem 1rem;
    }
    
    nav ul {
        gap: 0.5rem;
        font-size: 0.7rem;
    }
    
    nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    /* Hero */
    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .glitch-text {
        font-size: 1rem;
    }
    
    /* Section */
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    /* Quick links */
    .quick-icon {
        font-size: 3rem;
    }
    
    .quick-link-card h3 {
        font-size: 1.5rem;
    }
    
    /* Project cards */
    .project-icon {
        font-size: 2.5rem;
    }
    
    .project-card h3 {
        font-size: 1.5rem;
    }
    
    /* Skills */
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-icon {
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact-container {
        gap: 1.5rem;
    }
    
    .contact-form-wrapper h3, .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .form-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Loader - Küçük ekranlarda */
    .loader-content {
        width: 150px;
        height: 150px;
    }
    
    .loader-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* Tablet yatay (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Büyük ekranlar */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

/* Touch cihazlar için hover efektlerini devre dışı bırak */
@media (hover: none) and (pointer: coarse) {
    .project-card:hover,
    .info-card:hover,
    .skill-card:hover,
    .quick-link-card:hover {
        transform: none;
    }
    
    /* Ama tıklanınca efekt olsun */
    .project-card:active {
        transform: scale(0.98);
    }
    
    .info-card:active,
    .skill-card:active,
    .quick-link-card:active {
        transform: translateY(-5px);
    }
}