@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Define Twilight-inspired theme colors */
.bg-container {
    background-color: #f3f4f6;
}

.bg-card {
    background-color: white;
}

.text-primary {
    color: #1f2937;
}

.text-secondary {
    color: #6b7280;
}

.bg-button {
    background-color: #6a49db;
}

.bg-button:hover {
    background-color: #5d3cd1;
}

.bg-buy-button {
    background-color: #10B981;
}

.bg-buy-button:hover {
    background-color: #059669;
}

/* Custom styles */
.modal {
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
