/* Custom static premium overrides matching our visual dark theme */

body {
    background-color: #0E1013;
    color: #F3F4F6;
    overflow-x: hidden;
}

/* Ambient glows */
.ambient-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    height: 500px;
    background: linear-gradient(180deg, rgba(153, 27, 27, 0.15) 0%, rgba(120, 53, 4, 0.07) 50%, transparent 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Feature card styles */
.feature-card {
    display: flex;
    align-items: start;
    gap: 12px;
    background-color: #15181D;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #18181b; /* zinc-900 */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateX(4px);
    border-color: #27272a; /* zinc-800 */
}

/* Pulse bullet animation */
.bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #EF4444; /* red-500 */
    flex-shrink: 0;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.15);
    }
}

/* Spin/fade animations for premium look */
.spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
    border-top-color: #F59E0B; /* amber-500 */
    border-bottom-color: #F59E0B;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
