:root {
    --primary-gradient: linear-gradient(135deg, #0c618a 0%, #0c618a 100%);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #06ab77 100%);
    --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    --bg-color: #f3f4f6;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: transparent;
    /* Changed from var(--bg-color) to allow animation visibility */
    color: #1f2937;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.bg-primary-gradient {
    background: var(--primary-gradient) !important;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideLeft 0.6s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Background Animation - Rotating Galaxy */
.bg-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/fondo6.jpg') no-repeat center center fixed;
    background-size: 100% 100%;
    z-index: -1;
    overflow: hidden;
}

/* Animations removed */


/* Custom Buttons */
.gradient-btn {
    background: var(--primary-gradient);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}



.gradient-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.gradient-btn-success {
    background: var(--success-gradient);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gradient-btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.gradient-btn-purple {
    background: var(--purple-gradient);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gradient-btn-purple:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Status Dot */
.status-dot-anim {
    height: 10px;
    width: 10px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

/* Search Suggestions */
.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    background: white;
    transition: background-color 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f3f4f6;
}

.suggestion-match {
    color: #2563eb;
    font-weight: bold;
}

/* Console Styling */
.text-custom-console {
    color: #d1d5db;
}

.console-line {
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2px;
}

.console-line.success {
    color: #34d399;
}

.console-line.error {
    color: #f87171;
}

.console-line.warning {
    color: #fbbf24;
}

.console-line.info {
    color: #60a5fa;
}

/* Utility */
.filter-white {
    filter: brightness(0) invert(1);
}

/* Navigation Styles */
.custom-nav-pills .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
}

.custom-nav-pills .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.custom-nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0c618a 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(12, 97, 138, 0.4);
}

/* Glassmorphism Styles */
.card {
    background: rgba(12, 116, 169, 0.4) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.card-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.console-body {
    background-color: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(5px);
}