/* Custom Stiller */
body {
    font-family: 'Inter', sans-serif;
    background-color: #010101;
    color: #E0E0E0;
    cursor: none;
    /* Varsayılan imleci gizle */
    overflow-x: hidden;
    /* Yatay kaydırmayı engelle */
}

body::selection {
    color: oklch(70.7% 0.165 254.624);;
}

.main-container {
    position: relative;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    background-position: 0 0;
}

/* Özel İmleç Stilleri */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
}

.cursor-interactive-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(5);
}

.cursor-interactive-hover .cursor-outline {
    opacity: 0;
}

.cursor-link-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: #3B82F6;
    width: 16px;
    height: 16px;
    /* Mavi renk */
}

.cursor-link-hover .cursor-outline {
    opacity: 0;
}

/* Hareketli Arka Plan Nesneleri */
.floating-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

#shape1 {
    top: 15%;
    left: 5%;
    width: 200px;
    animation: floatRotate 35s infinite linear;
}

#shape2 {
    top: 60%;
    right: 5%;
    width: 180px;
    animation: floatRotate 40s infinite linear reverse;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-50px) rotate(180deg) scale(1.1);
    }

    100% {
        transform: translateY(0) rotate(360deg) scale(1);
    }
}

/* 3D EĞİM VE PARLAMA EFEKTİ */
.interactive-card {
    transform-style: preserve-3d;
    transition: transform 0.1s;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.interactive-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
}

.interactive-card:hover::before {
    animation: shine 0.85s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Fade-in animasyonu için başlangıç durumu */
.fade-in-item {
    opacity: 0;
    transform: translateY(40px);
}

.highlight-text {
    background: linear-gradient(90deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Login Modal Stilleri */
#login-modal {
    visibility: hidden;
    /* Başlangıçta görünmez */
}

.form-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #3B82F6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
    outline: none;
}

a:hover {
    cursor: none;
}

button:hover {
    cursor: none;
}

/* YENİ: İstatistik Kartı Glow Efekti*/
#stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0.2),
        0 0 30px 10px rgba(139, 92, 246, 0.1);
}

.stat-card-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 5px rgba(246, 59, 59, 0.2),
        0 0 30px 10px rgba(246, 92, 92, 0.1);
}

.stat-card-purple:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 5px rgba(77, 6, 107, 0.56),
        0 0 30px 10px rgba(139, 92, 246, 0.1);
}

.stat-card-pink:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 5px rgba(246, 59, 246, 0.2),
        0 0 30px 10px rgba(246, 92, 238, 0.1);
}

.misyon-card {
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.misyon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
}
.misyon-card:hover::before {
    animation: shine 0.85s;
}