﻿body { 
    background: #020617; 
    color: #fff; 
    font-family: 'Rajdhani', sans-serif; 
    scroll-behavior: smooth; 
}

.orbitron { 
    font-family: 'Orbitron', sans-serif; 
}

.glass { 
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

.neon-text { 
    text-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee; 
}

/* KAYAN YAZI (PORTAKAL RENGİ) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255, 165, 0, 0.05);
    border-top: 1px solid rgba(255, 165, 0, 0.3);
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
    padding: 12px 0;
    margin-bottom: 40px;
}

.marquee-text {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fb8c00;
    text-shadow: 0 0 10px rgba(251, 140, 0, 0.5);
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.slider-bg { 
    background-size: cover; 
    background-position: center; 
    transition: all 1s ease-in-out; 
}

.bar { 
    width: 4px; 
    background: #22d3ee; 
    border-radius: 2px; 
    transition: 0.1s; 
}

.zoom-effect { 
    overflow: hidden; 
    border-radius: 1.5rem; 
    position: relative; 
}

.zoom-effect img { 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

.zoom-effect:hover img { 
    transform: scale(1.1); 
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #22d3ee;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 0.75rem;
    }
    
    .orbitron {
        font-size: 1.5rem !important;
    }
}

/* Button Hover Effects */
button, a {
    transition: all 0.3s ease;
}

button:active, a:active {
    transform: scale(0.95);
}

/* Card Hover Effects */
.glass:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}