/* Base Styles */
body {
    font-family: var(--font-family);
    background: #000000;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Mouse-Interactive Glow - DISABLED (TubesCursor kullanılıyor)
.glow-cursor {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: top 0.2s ease-out, opacity 0.3s ease;
    top: 50%;
    background: transparent;
}

.glow-cursor-left {
    left: -500px;
    background: radial-gradient(
        circle at center,
        rgba(6, 182, 212, 0.7) 0%,
        rgba(6, 182, 212, 0.6) 10%,
        rgba(6, 182, 212, 0.45) 20%,
        rgba(6, 182, 212, 0.3) 30%,
        rgba(6, 182, 212, 0.18) 40%,
        rgba(6, 182, 212, 0.1) 50%,
        rgba(6, 182, 212, 0.05) 60%,
        rgba(6, 182, 212, 0.02) 70%,
        transparent 80%
    );
}

.glow-cursor-right {
    right: -500px;
    left: auto;
    background: radial-gradient(
        circle at center,
        rgba(16, 185, 129, 0.7) 0%,
        rgba(16, 185, 129, 0.6) 10%,
        rgba(16, 185, 129, 0.45) 20%,
        rgba(16, 185, 129, 0.3) 30%,
        rgba(16, 185, 129, 0.18) 40%,
        rgba(16, 185, 129, 0.1) 50%,
        rgba(16, 185, 129, 0.05) 60%,
        rgba(16, 185, 129, 0.02) 70%,
        transparent 80%
    );
}
*/

/* Ensure content is above glow */
main,
section,
header,
footer {
    position: relative;
    z-index: 1;
}

/* Mobile responsive glow - DISABLED (TubesCursor kullanılıyor)
@media (max-width: 768px) {
    .glow-cursor {
        display: none !important;
    }

    body::before,
    body::after {
        content: '';
        position: fixed;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
        background: transparent;
    }

    body::before {
        top: 20%;
        left: -300px;
        background: radial-gradient(
            circle at center,
            rgba(6, 182, 212, 0.65) 0%,
            rgba(6, 182, 212, 0.5) 15%,
            rgba(6, 182, 212, 0.35) 30%,
            rgba(6, 182, 212, 0.2) 45%,
            rgba(6, 182, 212, 0.08) 60%,
            rgba(6, 182, 212, 0.02) 75%,
            transparent 85%
        );
        animation: glow-mobile-1 20s ease-in-out infinite;
    }

    body::after {
        bottom: 30%;
        right: -300px;
        top: auto;
        left: auto;
        background: radial-gradient(
            circle at center,
            rgba(16, 185, 129, 0.65) 0%,
            rgba(16, 185, 129, 0.5) 15%,
            rgba(16, 185, 129, 0.35) 30%,
            rgba(16, 185, 129, 0.2) 45%,
            rgba(16, 185, 129, 0.08) 60%,
            rgba(16, 185, 129, 0.02) 75%,
            transparent 85%
        );
        animation: glow-mobile-2 25s ease-in-out infinite;
    }
}

@keyframes glow-mobile-1 {
    0%, 100% {
        opacity: 1;
        top: 20%;
    }
    50% {
        opacity: 0.6;
        top: 25%;
    }
}

@keyframes glow-mobile-2 {
    0%, 100% {
        opacity: 1;
        bottom: 30%;
    }
    50% {
        opacity: 0.6;
        bottom: 35%;
    }
}
*/

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

p {
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
}

/* Links */
a {
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

/* Selection */
::selection {
    background-color: var(--color-accent);
    color: #000000;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}