/* Custom Fonts and Animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #09090b;
    /* zinc-950 */
    color: #e4e4e7;
    /* zinc-200 */
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom Scrollbar */
.chat-scroll {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

.chat-scroll::-webkit-scrollbar {
    width: 4px;
}

.chat-scroll::-webkit-scrollbar-track {
    background: #1f2937;
}

.chat-scroll::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 20px;
}

/* Animations */
.status-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.call-wave {
    animation: wave 1.2s infinite ease-in-out;
}

@keyframes wave {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Modal Animation */
.modal-enter {
    animation: modalEnter 0.2s ease-out forwards;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

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

/* Ad Banner Shine */
.ad-banner {
    background: linear-gradient(90deg, #1e2937, #334155);
    position: relative;
    overflow: hidden;
}

.ad-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: adShine 8s linear infinite;
}

@keyframes adShine {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }

    100% {
        transform: rotate(30deg) translateX(100%);
    }
}