/* LLOTA - Index Page Custom Styles */

:root {
    --color-brand: #6E3F8D;
    --color-brand-light: #8B5FAD;
    --color-water: #0EA5E9;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: #F8FAFC;
    /* Subtle topographic pattern overlay */
    background-image: radial-gradient(#E2E8F0 1px, transparent 1px);
    background-size: 24px 24px;
    color: #1e293b;
    min-height: 100vh;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: rgba(14, 165, 233, 0.3);
}

/* Custom Gradients */
.bg-gradient-brand {
    background: linear-gradient(135deg, #6E3F8D 0%, #3B82F6 100%);
}

.text-gradient-brand {
    background: linear-gradient(135deg, #6E3F8D 0%, #3B82F6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.live-indicator {
    position: relative;
}

.live-indicator::before {
    content: '';
    position: absolute;
    left: -4px;
    top: -4px;
    right: -4px;
    bottom: -4px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

.input-field {
    transition: all 0.2s ease;
    border: 1px solid #94a3b8 !important; /* slate-400 */
    background-color: #f8fafc !important; /* slate-50 */
    color: #1e293b !important; /* slate-800 */
}

.input-field::placeholder {
    color: #64748b !important; /* slate-500 */
    opacity: 1;
}

.input-field:focus {
    box-shadow: 0 0 0 4px rgba(110, 63, 141, 0.1);
}
