
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

/* Style.css Root Variables */
:root {
  --neo-bg: #0f172a;
  --neo-text: #f1f5f9;
  --neo-primary: #2563eb;
  --neo-primary-400: #3b82f6;
  --neo-primary-600: #1d4ed8;
  --neo-primary-alpha-22: rgba(37, 99, 235, 0.22);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--neo-bg);
    color: var(--neo-text);
    scroll-behavior: smooth;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hover Effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hover-glow:hover {
    box-shadow: 0 0 25px var(--neo-primary-alpha-22);
}

.gradient-text {
    background: linear-gradient(90deg, var(--neo-primary-400), var(--neo-primary), var(--neo-primary-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.glow-effect:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.terminal-line {
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--neo-primary-400);
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--neo-primary-400)
    }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-delay-1 {
    animation-delay: 1s;
}

.floating-delay-2 {
    animation-delay: 2s;
}

.floating-delay-3 {
    animation-delay: 3s;
}

.scroll-top-btn {
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: auto;
    position: fixed !important;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

/* Mobil için scroll-top butonu iyileştirmeleri */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 1rem !important;
        right: 1rem !important;
        width: 3rem !important;
        height: 3rem !important;
        z-index: 9999;
        position: fixed !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

/* iOS Safari için özel düzeltmeler */
@supports (-webkit-touch-callout: none) {
    .scroll-top-btn {
        position: fixed !important;
        bottom: 1rem !important;
        right: 1rem !important;
    }
}

/* Android Chrome için özel düzeltmeler */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .scroll-top-btn {
        position: fixed !important;
        bottom: 1rem !important;
        right: 1rem !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}
.nav-link {
    position: relative;
}

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

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

/* Filter toggle animations */
.filter-toggle {
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.filter-toggle:hover {
    transform: translateY(-5px);
    animation-play-state: paused;
}

/* Color-specific animations */
.filter-toggle.blue:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.7);
}

.filter-toggle.purple:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
    border-color: rgba(139, 92, 246, 0.7);
}

.filter-toggle.green:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.7);
}

.filter-toggle.red:hover {
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.5);
    border-color: rgba(239, 68, 68, 0.7);
}

.filter-toggle.yellow:hover {
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.5);
    border-color: rgba(234, 179, 8, 0.7);
}

.filter-toggle.indigo:hover {
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
    border-color: rgba(99, 102, 241, 0.7);
}

.filter-toggle.orange:hover {
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
    border-color: rgba(249, 115, 22, 0.7);
}

.filter-toggle.teal:hover {
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.5);
    border-color: rgba(20, 184, 166, 0.7);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3), 0 10px 10px -5px rgba(59, 130, 246, 0.1);
}

.collector-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}