/* Temel Stiller */
.navbar {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.logo-gradient {
    background: linear-gradient(45deg, #ffffff, #e6f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

/* Beta Rozeti */
.beta-badge {
    background: #e74c3c;
    color: white;
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 1rem;
    top: -0.8em;
    position: relative;
    margin-left: 0.3rem;
    font-weight: 500;
}

/* Navigasyon Linkleri */
.nav-link {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 0.8rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.15);
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* CTA Butonu */
.cta-button {
    background: linear-gradient(45deg, #f1c40f, #e67e22);
    color: #2c3e50 !important;
    font-weight: 600 !important;
    border-radius: 0.75rem;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Mobile Tasarım */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 1rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .cta-button {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show {
    animation: fadeInDown 0.4s ease;
}