:root {
    --primary: #6366f1;    /* Bright indigo */
    --secondary: #ec4899;  /* Hot pink */
    --background: #0a0a0f; /* Very dark blue-black */
    --text: #f8fafc;      /* Pure white */
    --accent: #22d3ee;    /* Cyan */
    --surface: #14141f;   /* Darker slate */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}



.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    position: fixed;
    transition: transform 0.3s ease;
}

/* Hover efektleri için */
.cursor.hover .cursor-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
}

.cursor.hover .cursor-outline {
    transform: scale(1.5);
    border-color: transparent;
    background-color: rgba(139, 92, 246, 0.1);
}

/* Link ve butonlar üzerinde hover efekti */
a:hover ~ .cursor .cursor-dot,
button:hover ~ .cursor .cursor-dot {
    background-color: var(--accent);
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 15, 0.8);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem;
}

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

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

.nav-link i {
    margin-right: 5px;
    font-size: 0.9em;
}

.nav-link:hover i {
    animation: bounce 0.5s ease infinite;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
}

.hero-text {
    max-width: 600px;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text);
}

.typewriter {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn.primary {
    background-color: var(--primary);
    color: var(--text);
}

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

.btn:hover {
    transform: translateY(-3px);
}

.btn.primary i {
    margin-right: 8px;
}

.btn.primary:hover i {
    animation: bounce 0.5s ease infinite;
}

.btn.primary .fa-file-pdf {
    margin-right: 8px;
    color: #ffffff;
}

.btn.primary:hover .fa-file-pdf {
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    filter: blur(30px);
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 0;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    animation-delay: -2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 100px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    animation-delay: -4s;
}

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

.works {
    padding: 100px 10%;
}

.works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-tags span {
    background-color: var(--primary);
    color: var(--text);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-info h3 a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-info h3 a:hover {
    color: var(--primary);
}

.project-info h3 a i {
    font-size: 0.8em;
}

.project-info h3 a .fa-youtube {
    color: #FF0000;  /* YouTube kırmızısı */
}

.project-info h3 a:hover .fa-youtube {
    color: var(--primary);
}

.project-info h3 a .fa-instagram {
    background: -webkit-linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-info h3 a:hover .fa-instagram {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--surface);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    color: var(--text);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5%;
    }

    .hero-visual {
        width: 300px;
        height: 300px;
        margin-top: 2rem;
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
    }
}

.tech-stack {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background-color: var(--surface);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tech-stack span:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.tech-stack span:hover i {
    color: var(--text);
}

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

.tech-stack .fa-microsoft {
    color: var(--primary);
    margin-right: 2px;
}

.tech-stack span:hover .fa-microsoft {
    color: var(--text);
}

.skills {
    padding: 100px 10%;
}

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

.skill-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.skill-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.skill-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.skill-card p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

/* Golang için özel ikon stili */
.fa-golang:before {
    content: "Go";
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-style: normal;
}

/* Mobil cihazlar için cursor'ı gizle */
@media (max-width: 768px), (pointer: coarse) {
    .cursor, .cursor-dot, .cursor-outline {
        display: none !important;
    }
}