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

/* Base Reset & Variables */
:root {
    --bp-dark: #0F172A;
    --bp-darker: #020617;
    --bp-primary: #EF4444;
    --bp-gray: #94A3B8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bp-dark);
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bp-darker);
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--bp-primary);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Skeleton Loading Animation */
.skeleton {
    background: #1e293b;
    background: linear-gradient(110deg, #1e293b 8%, #334155 18%, #1e293b 33%);
    border-radius: 6px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.2);
}

/* Toast Notification */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
.toast {
    background: rgba(15, 23, 42, 0.95);
    border-left: 4px solid var(--bp-primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Live Demo Pulse */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #334155;
    transition: all 0.3s ease;
}
.status-dot.active {
    background-color: var(--bp-primary);
    box-shadow: 0 0 10px var(--bp-primary);
}
.status-line {
    flex: 1;
    height: 2px;
    background-color: #334155;
    transition: all 0.3s ease;
}
.status-line.active {
    background-color: var(--bp-primary);
}

/* Mobile Menu */
.mobile-menu-enter-active,
.mobile-menu-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-enter-from,
.mobile-menu-leave-to {
  opacity: 0;
  transform: translateY(-20px);
}