/* Onboarding Tour Styling - Geliştirme 20260702 */

.onboarding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1050;
}

.onboarding-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 10, 0.75);
    backdrop-filter: blur(2px);
    pointer-events: auto;
    transition: clip-path 0.3s ease-out;
}

.onboarding-spotlight {
    position: absolute;
    border-radius: 8px;
    border: 2px dashed #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4), inset 0 0 10px rgba(245, 158, 11, 0.2);
    pointer-events: none;
    animation: spotlight-pulse 1.5s infinite alternate;
    transition: all 0.3s ease-out;
}

@keyframes spotlight-pulse {
    0% {
        box-shadow: 0 0 12px rgba(245, 158, 11, 0.3), inset 0 0 8px rgba(245, 158, 11, 0.15);
    }
    100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.65), inset 0 0 14px rgba(245, 158, 11, 0.35);
    }
}

.onboarding-popover {
    position: absolute;
    width: 320px;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.25) !important;
    border-radius: 12px;
    padding: 1.25rem;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.15);
    pointer-events: auto;
    z-index: 1060;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: popover-fade-in 0.25s ease-out;
}

@keyframes popover-fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.onboarding-popover h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.onboarding-popover p {
    color: #94a3b8;
    line-height: 1.6;
}

.onboarding-btn-next {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #0f172a !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
    transition: all 0.2s ease-in-out !important;
}

.onboarding-btn-next:hover {
    transform: translateY(-1.5px) !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45) !important;
}

.onboarding-btn-prev {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #e2e8f0 !important;
    transition: all 0.2s ease-in-out !important;
}

.onboarding-btn-prev:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.onboarding-help-badge {
    animation: help-pulse 2s infinite alternate;
}

@keyframes help-pulse {
    0% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
    100% {
        box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
    }
}

/* Cosmic Toast Notification System - Geliştirme 20260703 */
.toast-notification-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
    pointer-events: none;
}

.cosmic-toast {
    pointer-events: auto;
    width: 320px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    animation: toast-slide-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.toast-fade-out {
    opacity: 0 !important;
    transform: translateY(-15px) scale(0.95) !important;
}

.toast-info {
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15), 0 10px 25px rgba(0, 0, 0, 0.5);
}
.toast-info i {
    color: #3b82f6;
}

.toast-success {
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15), 0 10px 25px rgba(0, 0, 0, 0.5);
}
.toast-success i {
    color: #10b981;
}

.toast-warning {
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2), 0 10px 25px rgba(0, 0, 0, 0.5);
}
.toast-warning i {
    color: #f59e0b;
}

.toast-danger {
    border: 1px solid rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2), 0 10px 25px rgba(0, 0, 0, 0.5);
}
.toast-danger i {
    color: #ef4444;
}

.cosmic-toast span {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}
